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

2010-08-19 Thread Kantesh
this may help u.. try it out..i am not sure..:) getApplicationContext().setTheme(android.R.style.Theme_NoTitleBar_Fullscreen); On Aug 20, 3:26 am, Moto medicalsou...@gmail.com wrote: Currently my application allows the user to set the application to run in full screen.  I than check in every

[android-developers] Re: Unparsed aapt error

2010-04-27 Thread Kantesh
Hey still i coudn get rid of it.. On Mar 16, 6:57 pm, Patrick Noffke patrick.nof...@gmail.com wrote: Hi all, I found some old posts on this problem, and I was having a similar issue, so I thought I'd share what I learned. I was getting this error after modifying an XML file, and I was

[android-developers] Re: Unparsed aapt error

2010-04-27 Thread Kantesh
Hey please help.. i followed u.. but still cudn get rid of it..its showing error in java file.. werever r.layout is there.. On Apr 22, 1:02 am, Christopher tys...@gmail.com wrote: Doing Project Clean in Eclipse helped clear up the problem for me. -- You received this message because you are

[android-developers] Re: OpenGL Circle drawing

2010-03-18 Thread Kantesh
On Mar 17, 3:41 am, Robert Green rbgrn@gmail.com wrote: Tom, I have to recommend just getting a book on the subject.  I learned most everything off of examples and documents on the web.  After several months, I finally picked up the blue book and everything I had scoured to find is

[android-developers] Re: Hi All TabWidget Show is Small

2010-03-18 Thread Kantesh
Hi takky wenever u create tab by using TabHost.addTab(TabSpec); rite?? store all tabspecs in array list of type tab spec lik this ArrayListTabHost.TabSpec list = new ArrayListTabHost.TabSpec(); and initialy show up to 3 in a for loop ... as u told add a button at

[android-developers] TabWid

2010-03-18 Thread Kantesh
got result?? -- 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 unsubscribe from this group, send email to android-developers+unsubscr...@googlegroups.com For more

[android-developers] Re: Can't dynamically update ListAdapter for ListView

2010-03-22 Thread Kantesh
i cudn exactly understand ur prob ,U jus add items to array list tht u r using fir adapter properly..its getcount 'll take care of items display.. also wen ever u remove an item from list it;ll atomatically updated.. use arraylist...length in get count..reload the list.. i suppose am convincing

[android-developers] Re: removing all items of a listview

2010-03-23 Thread Kantesh
mListAdapter.remove(x); // to remove an item and mListAdapter.invalidate(); // to refresh the content or mListAdapter.notifyDataSetChanged(); try it On Mar 23, 10:20 am, kavitha kavith...@gmail.com wrote: thanks for response patbenatar,,, can u please post the example code here,, wat

[android-developers] Re: removing all items of a listview

2010-03-23 Thread Kantesh
mListAdapter.remove(x); // to remove an item //here instead of removing only x clear your list or whatever so.. and mListAdapter.invalidate(); // to refresh the content or mListAdapter.notifyDataSetChanged(); On Mar 23, 10:20 am, kavitha kavith...@gmail.com wrote: thanks for response

[android-developers] How to deal with the dinamic creatoin of tabs?

2010-03-23 Thread Kantesh
I am trying to create and remove tabs dynamically. Usually an activity should be set for each tab created in TabSpec. But how to do it when the tabs are created dynamically? Here I am using a frame layout to display tab content. If I try to use the same activity by setting the tab content, the

[android-developers] How to deal with the dynamic creation of tabs?

2010-03-23 Thread Kantesh
I am trying to create and remove tabs dynamically. Usually an activity should be set for each tab created in TabSpec. But how to do it when the tabs are created dynamically? Here I am using a frame layout to display tab content. If I try to use the same activity by setting the tab content, the

[android-developers] Re: Did Google really remove the ability to call the CropImage activity from Android 2.x apps?

2010-03-23 Thread Kantesh
hi, i suggest, i dont exactly but, i think u forgot to register that particular activity in manifest file in activity node for application root.. On Mar 24, 8:08 am, Streets Of Boston flyingdutc...@gmail.com wrote: ... very strange, how come it works fine on my Droid (2.0.1), on my G1

[android-developers] Re: Is this the limitation of Intent.ACTION_SEND

2010-03-23 Thread Kantesh
Hi mike, u r telling about the limitation made by network operators, but Aj is about where his framework limiting it. On Mar 24, 2:50 am, AJ ajeet.invinci...@gmail.com wrote: Hi Mike I think you misunderstood. I am just talking about limitation of sending text to SMS through Intent

[android-developers] Re: Deleting An Application with ContentProvider Other Applications not working

2010-03-23 Thread Kantesh
hi, If u r using cursor, r closing after done with that? On Mar 23, 7:11 pm, Rajiv rajiv...@gmail.com wrote: Hi all I have a problem to uninstalling the product in android. I have used *ContentProvider* to share data in multiple applications. I used  in Android Manifest file  *provider

[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..:) getApplicationContext().setTheme

[android-developers] Browser: Keyboard disappears.

2010-08-31 Thread KANTESH BABANNAVAR
, especially in land scape, the edit text field (Integrated with keyboard itself), does not reflects the letters typed afterwards, but gets reflected in the fake tittle bar behind it. I am not able categorize where and how its happening. Could anybody help me. Thank you, With Regards Kantesh Log

[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] 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: 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: 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