[android-developers] How to get Postal/Home address from a contact saved in contacts list android1.5

2010-02-10 Thread akkilis
Hi All, I am working on an application in which i have to fetch the Postal or Home address of any contact from the contact list. I want to open contact list and when i click on any contact item I should get its Postal Address or Home address in return. But I am not able to figure it out. I am

[android-developers] Re: TabHost Layout Question

2010-12-03 Thread akkilis
You can set the height of the Tabs of your TabHost or simply can provide the images to them also to change their background. Setting Height: TabHost android:id=@+id/tab_host LinearLayout android:orientation=vertical

[android-developers] Re: Google Map activity not working

2010-11-27 Thread akkilis
Abhishek, By looking upon your code nothing seems wrong with it. Have you obtained the key correctly? Can you post the error message so that issue can be looked upon. On Nov 27, 5:41 pm, Abhishek Talwar r.o.b.i.n.abhis...@gmail.com wrote: Hi guys I was trying for the first time to make a

[android-developers] Re: Google Map activity not working

2010-11-27 Thread akkilis
Ohh.I should have spotted this earlier. You have to add this in the applications element in the manifest file: uses-library android:name=com.google.android.maps / i.e. Manifest should be like this: uses-permission ./uses-permission application ...

[android-developers] Re: Google Map activity not working

2010-11-27 Thread akkilis
On Nov 27, 10:17 pm, akkilis deepakverma.u...@gmail.com wrote: Ohh.I should have spotted this earlier. You have to add this in the applications element in the manifest file: uses-library android:name=com.google.android.maps / i.e. Manifest should be like this: uses-permission

[android-developers] Re: 3g or wifi connection without user interaction

2010-11-27 Thread akkilis
Rustam, To stop all the data connections while working on emulator, you need to configure it through DDMS perspective. Open it and go to Telephony Section, There you will find a drop down for the Data services, choose appropriate option for your requirement from home, roaming and denied. I dint

[android-developers] Re: Dialog and Other View

2010-11-28 Thread akkilis
Jithin, In Android, if the dialog is shown, the area beneath it cant get any user interaction. And this is quite a useful property that when you have to show a progress in any process and you want to restrict user not to do any UI interaction, then instead of changing the visibility of the

[android-developers] Re: Back key behaviour between Activity Groups.

2010-11-29 Thread akkilis
Mahesh, Why dont you make a different class, say PlayBackView, extending LinearLayout and place the layout of the common component Playback bar in a different layout xml, say playback.xml. Now inflate the playback.xml in the PlayBackView. Now you can add this your custom view in any of the

[android-developers] Re: Back key behaviour between Activity Groups.

2010-11-29 Thread akkilis
To add on, dont forget to add the constructor to the PlayBackView with context and AttributeSet i.e. public PlayBackrView(Context context, AttributeSet attrs) { super(context, attrs); .. .. } On Nov 30, 11:52 am, akkilis

[android-developers] Re: Back key behaviour between Activity Groups.

2010-11-30 Thread akkilis
connecting to background service. Which is costly. So I was wondering, If I could have to inflate it only once. On Nov 30, 11:57 am, akkilis deepakverma.u...@gmail.com wrote: To add on, dont forget to add the constructor to the PlayBackView with context and AttributeSet i.e. public