[android-developers] How to change Keyboard InputType programatically

2011-05-25 Thread Explore Android
Hi, I am working on a Remote Desktop application and I want to control the keyboard presence programmatically. I achieved the display of soft keyboard by following block of code, InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);

[android-developers] Re: How to implement directory tree like list?

2010-09-08 Thread Explore Android
of features in the application. Is there a nice technique of implementing this? thanks On Sep 8, 1:05 pm, TreKing treking...@gmail.com wrote: On Tue, Sep 7, 2010 at 9:33 PM, Explore Android stetest...@googlemail.comwrote: I want to build a list that show the directory tree like list similar

[android-developers] How to implement directory tree like list?

2010-09-07 Thread Explore Android
Hi, I want to build a list that show the directory tree like list similar to folders view on the left pane in 'Windows Explorer'. I have seen ExpandableList but this goes into 2 levels only. I want to go into multiple levels. Expand the item by clicking on the left icon and show sub directories

[android-developers] Re: Activity inside a view

2010-09-06 Thread Explore Android
Thanks a lot. That solves my problem. On Sep 6, 6:49 pm, a1 arco...@gmail.com wrote: Does anyone has a simple example of to use LocalActivityManager or something else to meet my requirements. void createInnerActivity(ViewGroup container, Class? activityClass) {         if

[android-developers] Re: Activity inside a view

2010-09-05 Thread Explore Android
Thanks for all your feedback or suggestions. Before posting this message I was already implementing the solution that proposed by TreKing. But I felt this is not a smart way of doing it. It would have been nicer to have all my ActivityA behavior and GUI (with out any modifications) showed inside

[android-developers] Activity inside a view

2010-09-02 Thread Explore Android
Hi Android_Experts, I am facing a very interesting issue. I have an activity called ActivityA that does beautiful things. I have another activity ActivityB with button and framelayout. When button is clicked in ActivityB I want to start ActivityA. Starting ActivityA in full screen mode is

[android-developers] Accessing internet in my application being behind proxy

2010-05-17 Thread Explore Android
Hi, I am trying to connect to internet through android emulator being behind proxy. I am using Android 1.6 SDK. I set my proxy details going to Home Screen-Menu Key-Settings- Wireless controls-Mobile networks-Access Point Names After entering the proxy settings I opened the browser app, then it

[android-developers] How to change default intent action?

2009-06-26 Thread Explore Android
Hi, I am customising native phonebook application as a third party application which can be launched by the same intent as the native application. I have installed that application in my G1 phone. When I have clicked on Contacts icon in launcher menu it a menu pops out and asks me to select

[android-developers] Re: How to change default intent action?

2009-06-26 Thread Explore Android
Thanks, it works. On Jun 26, 4:53 pm, schwiz sch...@gmail.com wrote: you have to goto the application settings by pressing menu then settings then goto applications then scroll down to your app and clear the default setting On Jun 26, 9:12 am, Explore Android stetest...@googlemail.com wrote

[android-developers] Re: Strange TabHost NullPointerException

2009-06-25 Thread Explore Android
I am also facing the same issue, not sure this is framework issue or application issue. Any experts have a say on this issue? (I am working with Android 1.5 SDK) On Jun 17, 2:26 pm, roland roland...@gmail.com wrote: I just found a strange issue in my application which contains a ListView. When

[android-developers] How to implement buddy list screen

2009-03-18 Thread Explore Android
Hi All, I am working on implementing an Instant Messenger application in Android. I want to display buddy list screen as follows, Friends(this is group name) status_icon friend1_name status_icon friend2_name . . General (this is group name) status_icon general1_name

[android-developers] Re: How to make an application NOT uninstallable like build-in apps

2009-03-06 Thread Explore Android
Hi Jean, Thanks for your response. I understand. On Mar 5, 9:23 pm, Jean-Baptiste Queru j...@android.com wrote: You need to be able to work directly in the system image, i.e. to work directly with (or to be) a device manufacturer. JBQ On Thu, Mar 5, 2009 at 9:27 AM, Explore Android

[android-developers] How to make an application NOT uninstallable like build-in apps

2009-03-05 Thread Explore Android
Hi All, I am working on social networking application and our company/operator requirement is that the user should not be allowed to uninstall this application like any build in applications. How can we make our application be NON uninstallable? Any pointers, greatly appreciated.