[android-developers] Re: BroadcastReceiver not working for Car Dock

2010-10-13 Thread KANTESH BABANNAVAR
I think actoin should be android.intent.category.CAR_DOCK. On Oct 11, 7:57 am, zachariahyoung zpyo...@gmail.com wrote: I'm trying to write a program to send an email when the phone is placed in the car dock.  I have create a Android Project with no Activities. Below is the one class I have

[android-developers] Re: BroadcastReceiver

2010-09-22 Thread KANTESH BABANNAVAR
Could you please prodice the log events of crash?? i think you may be missing some permissions.. On Sep 22, 8:37 am, perumal316 perumal...@gmail.com wrote: Hi All, I have written an application to read all incoming SMS and if the SMS contains certain string, I will also send a copy of the

[android-developers] Re: BroadcastReceiver

2010-09-22 Thread KANTESH BABANNAVAR
probably these? uses-permission android:name=android.permission.SEND_SMS / uses-permission android:name=android.permission.RECEIVE_SMS / On Sep 22, 8:37 am, perumal316 perumal...@gmail.com wrote: Hi All, I have written an application to read all incoming SMS and if the SMS contains certain

[android-developers] Re: Debugging on a real device

2010-09-17 Thread KANTESH BABANNAVAR
u can try ./adb kill-server after that ./adb start-server. Make sure that u have ebabled the USB Debugging in settings- applications-Development. On Sep 17, 10:27 am, John Gaby jg...@gabysoft.com wrote: I have gotten to to the point where I need to test my application on a real Android

[android-developers] Re: Browser: Keyboard disappears.

2010-09-17 Thread KANTESH BABANNAVAR
Please somebody help me to solve this.. On Aug 31, 2:57 pm, KANTESH BABANNAVAR kantesh...@gmail.com wrote: Hi Androidians,          This is a magic happening with browser. When i touch the URL field  in the browser, a fake tittle bar comes up and it is a so called search dialog, and start

[android-developers] Re: How can i access the /data/data/my_project_name/files/my_file.txt on a real android device

2010-09-17 Thread KANTESH BABANNAVAR
d- type of file rwx - permissions for root rwx - permissions for group --x - permissions for you/your app As per this your cant operate with the file I think. On Sep 17, 2:10 pm, Lidia lidyp...@yahoo.com wrote: Hello to all, I wrote a file o the phone from my application in the following

[android-developers] Re: How do I refer to a drawable with a variable

2010-09-14 Thread KANTESH BABANNAVAR
I think it may help you.. getresources().getDrawable(TeamArray[position]); Where TeamArray[position] = { R.drawable.drawable1, R.drawable.drawable2, . . R.drawable.drawableN, } These links may help you.. http://developer.android.com/resources/tutorials/views/hello-gridview.html

[android-developers] Re: How to include progress dialogue..?

2010-09-14 Thread KANTESH BABANNAVAR
please refer this link. http://developer.android.com/guide/topics/ui/dialogs.html On Sep 14, 8:24 am, Rubin jeff.rubi...@gmail.com wrote: Hi                     I have to show progress dialog while button click. Is there any sample code to show this. Cheers, Rubin -- You received this

[android-developers] Browser: Keyboard disappears.

2010-08-31 Thread KANTESH BABANNAVAR
Hi Androidians, This is a magic happening with browser. When i touch the URL field in the browser, a fake tittle bar comes up and it is a so called search dialog, and start typing some letters fast, the keyboard disappears. And the Log events* say the following. Once it is happened,

[android-developers] Re: Scrolling in a ListView

2010-08-21 Thread KANTESH BABANNAVAR
One of the data you are providing to the list view may not be initialized or null. Put event log n check all values. On Aug 20, 12:06 am, Sebastian Muehr sebastian.mu...@googlemail.com wrote: In one of my projects I've got a ListView with hundreds of elements. But when scrolling through this

[android-developers] Re: enable/dissable fullscreen for lifetime of the app?

2010-08-21 Thread KANTESH BABANNAVAR
this may help u.. try it out..i am not sure..:) getApplicationContext().setTheme(android.R.style.Theme_NoTitleBar_Fullscree n); On Aug 20, 10:27 am, Kantesh kantesh@gmail.com wrote: this may help u.. try it out..i am not sure..:)