[android-developers] how to hide softtkeyboard pressedkey popup?

2012-01-23 Thread genxsol
could anyone please help me to solve the problem below? I have set my edittext to accept passwords by android:password=true problem is , when i press any key on softkeyboard, it displays the pressed key on popup as well. is it possible to force the keyboard not to display pressed key popup?

[android-developers] is XMLENC in Android possible?

2011-06-06 Thread genxsol
Hi Group, could anyone please let me know if XMLEnc library available in Android or if there is anyway i can use it Thanks -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

[android-developers] is XMLENC in Android possible?

2011-06-06 Thread genxsol
Hi Group, could anyone please let me know if XMLEnc library available in Android or if there is anyway i can use it Thanks -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

[android-developers] fromHtml doesn't work for textview font size, any help?

2010-12-29 Thread genxsol
Hi Dear, i am trying to put text on a text view with different size for each word textView.setText(Html.fromHtml(font size='10' color='red' Word1 / font font size='15' color='white' Word2 /font))); color does work but no font size, any help plz -- You received this message because you are

[android-developers] seekto is not displaying the video frame on mediaplayer, any help?

2010-12-02 Thread genxsol
Hi Dear, i made a simple application to play a video from position1 untill position2 when mediaplayer reaches at position2, i pause the mediaplayer and seek it to position1 again. now the problem is, mediaplayer still displays position2 video frame how can i set the mediaplayer back to frame

[android-developers] can i filter some apps from Intent.createChooser?

2010-09-22 Thread genxsol
Hi there, i am looking to access some chosen native apps available in my phone. i used the code below but it display some other Apps also which i dont want. intent.setType(text/plain); intent.putExtra(Intent.EXTRA_SUBJECT, subject);

[android-developers] Re: deep effect in gallery?

2010-09-22 Thread genxsol
i am still struggle with this but no clue at all On Sep 1, 2:14 pm, genxsol genx...@gmail.com wrote: Hi Folks, I am looking for Deep effect in Androidgallery. i did some work around coverflow athttp://www.inter-fuser.com/search/label/Coverflow but it also do scroll left and right. it does

[android-developers] deep effect in gallery?

2010-09-01 Thread genxsol
Hi Folks, I am looking for Deep effect in Android gallery. i did some work around coverflow at http://www.inter-fuser.com/search/label/Coverflow but it also do scroll left and right. it does give me the idea to calculate offset top and left for each item separately but still there is no access.

[android-developers] ClientProtocolException

2010-08-09 Thread genxsol
Hi Dear, My application normally work fine but sometime i get the following exception, could any one help me to figure out what could be the reason and how can i resolve it W/System.err( 3859): org.apache.http.client.ClientProtocolException W/System.err( 3859):at

[android-developers] can i sue HTTP/1.0 in my httpClient?

2010-05-26 Thread genxsol
Hi Dear, by default HttpClient use HTTP/1.1 protocol, is there any way to change it to HTTP/1.0? any idea? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To

[android-developers] can i use HTTP/1.0 in my HttpClient?

2010-05-26 Thread genxsol
Hi Dear, by default HttpClient use HTTP/1.1 protocol, is there any way to change it to HTTP/1.0? any idea? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To

[android-developers] Re: can i use HTTP/1.0 in my HttpClient?

2010-05-26 Thread genxsol
yes it works. thx On May 26, 7:05 pm, Mark Murphy mmur...@commonsware.com wrote: genxsol wrote: Hi Dear, by default HttpClient use HTTP/1.1 protocol, is there any way to change it to HTTP/1.0? any idea? Configure your HttpClient with an HttpParams object, in which you set

[android-developers] Re: Global search button removes my dialog, any help to ignore phone's search button click?

2010-05-24 Thread genxsol
? On May 21, 7:43 pm, TreKing treking...@gmail.com wrote: On Fri, May 21, 2010 at 1:36 PM, genxsol genx...@gmail.com wrote: my activity shows help dialog when it starts but as soon as i click the click search button on the phone, search dialog appears and my dialog goes away. So what

[android-developers] Global search button removes my dialog, any help to ignore phone's search button click?

2010-05-21 Thread genxsol
Hi Dear, my activity shows help dialog when it starts but as soon as i click the click search button on the phone, search dialog appears and my dialog goes away. i can ignore the search key in my activity like below but it is still working when i have any dialog on top @Override public

[android-developers] what resolution mediaplayer can support?

2010-03-16 Thread genxsol
Hi Dear, i am trying to play a video through uri (http://-) but i can only listen voice, no display i am using the MediaPlayerDemo_Video from the api samples. i used anyother link which works fine. i need to know what resolution Android videoplayer can support so i can transcode my video

[android-developers] how to force wifi connection for my download module?

2010-03-14 Thread genxsol
Hi Dear, i need to download 3GB file through my download manager. i need to force my download through wifi. can anybody help please setNetworkPreference(ConnectivityManager.TYPE_WIFI);// shall i use this ? -- You received this message because you are subscribed to the Google Groups Android

[android-developers] how can i make drag animation like in application menu and notification?

2010-03-08 Thread genxsol
Hi Dear, i want to drag up and down or left and right same like we do to see notifications and menu. can anybody point to the right direction please? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

[android-developers] my FileDescriptor doesn't work with mediaplayer (plz help)

2010-02-26 Thread genxsol
Hi Experts, i have a filedescriptor through a script like this Class? execClass = Class.forName(android.os.Exec); Method createSubprocess = execClass.getMethod(createSubprocess,

[android-developers] can't compile opencore

2010-02-26 Thread genxsol
Hi Dear, i am trying to compile opencore module separatley at cygwin. downloaded the source code followed steps in startup file --- cd opencore/build_config/opencore_dynamic source setup.sh opencore make -j -- error:

[android-developers] named pipe in native code?

2010-02-25 Thread genxsol
HI Dear, i am trying to create a named pipe in my native code which i will access in my java code here is my sample code to create piple which doesn't work --- #include string.h #include jni.h #include unistd.h #include

[android-developers] Re: How to make a Downloadable DRM Module

2010-02-24 Thread genxsol
As a starting point, i just put a little function in android/media/ MediaPlayer.java and replaced it in my android.jar using in eclipse Android Appication. now when i try to access that function in my App, it gives me exception ERROR/dalvikvm(2239): Could not find method

[android-developers] how to test OpenCore OMA1

2010-02-22 Thread genxsol
Hi Dear, i am learning about OpenCore OMA1 plugin. can anybody advise how can i test it for my video file to play? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To