[android-developers] Temperature widget implementation in android

2012-03-01 Thread sagar shende
Hey hi, anybody tell me about Temperature widget implementation in android Thanks in advance -- 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

[android-developers] Display problems with Galaxy Notes?

2012-03-01 Thread Terry
I have an app which shows reasonably well on the screen of all devices I have tested - until one user complained about it on a new Samsung Galaxy Notes. He sent me some screenshots, which shows that my UIs are displayed in a somewhat compressed form at the upper 3/4 of the screen. The lower 1/4 of

Re: [android-developers] onActivityResult never invoked under tab activity

2012-03-01 Thread vani reddy
I added that ,but still it is not working.In normal activites it works ,but under Tabactivity it doesnt work. On Thu, Mar 1, 2012 at 1:27 PM, MOHANAKRISHNAN remokri...@gmail.com wrote: main.xml file: ?xml version=”1.0” encoding=”utf-8”? LinearLayout

Re: [android-developers] Display problems with Galaxy Notes?

2012-03-01 Thread MOHANAKRISHNAN
i think it may depends upon the apn problems, just change apn value to desired devices value. On Thu, Mar 1, 2012 at 1:41 PM, Terry terb...@gmail.com wrote: I have an app which shows reasonably well on the screen of all devices I have tested - until one user complained about it on a new Samsung

[android-developers] Re: Android Project

2012-03-01 Thread Ali Chousein
Agree with the comment above. Just thinking aloud. Would you consider developing an application which gives a notification when someone comments to your post in this discussion platform? Maybe you can generalize it for all google groups. I'm not completely sure, but based on my knowledge there is

[android-developers] How to add View to xml file?

2012-03-01 Thread android developer
Hi all, i am trying to add to view(which consists circle) my xml file , but i could n't, so please help me on this... is it possible? Thank you all -- 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] Sipmanager.newInstance not support in android gingerbread

2012-03-01 Thread Jagruti Sangani
hello, At somewhere i have read that sipmanager.newinstance not support in android gingerbreag for sip calling.So thats why manager will come to null.and also posted that there is need to create two xml file for run in mobile.So anybody know which two xml file need to create and what is in that.

Re: [android-developers] How to add View to xml file?

2012-03-01 Thread Adail Horst
Hi, I have a TV Box runing android 2.3.4. This TV BOx dont have SU command and dont have any USB Client (have 3 USB Host and 1 USB OTG). Any idea how to root this device ? I like to developer some customization in this device but need to root to make the changes. Adail Horst OCA/OCP -

[android-developers] application unable to access internet on device while working properly on android emulator?

2012-03-01 Thread Juned Khan
hi all developers, I have developed one SIP based application which does not use INTERNET connection while debugging on android device. but debugging on emulator it works properly.I have given all the permission in manifest.xml regarding INTERNET connection. is there any other

Re: [android-developers] application unable to access internet on device while working properly on android emulator?

2012-03-01 Thread Chalavadi Sagar
check the wifi connection in your device , whether it is connected or not to make sure that your device is enabled for the use of internet based services. On Thu, Mar 1, 2012 at 3:35 PM, Juned Khan jkhan6...@gmail.com wrote: hi all developers, I have developed one SIP based

Re: [android-developers] Re: Android widget: dinamically list from own combiled string (as template)

2012-03-01 Thread Chalavadi Sagar
I am suggesting you to use custom adapter that will solve your problem. Ch.B.Sagar On Thu, Mar 1, 2012 at 11:11 AM, moktarul anam mokta...@gmail.com wrote: hi Stan, its not clear... can u send me ur sample template ir images ? or can u clearly explain Moktarul On Wednesday, 29

[android-developers] Re: Display problems with Galaxy Notes?

2012-03-01 Thread Terry
What do you mean by change the apn value ? Terry On 1 Mar, 09:57, MOHANAKRISHNAN remokri...@gmail.com wrote: i think it may depends upon the apn problems, just change apn value to desired devices value. On Thu, Mar 1, 2012 at 1:41 PM, Terry terb...@gmail.com wrote: I have an app

Re: [android-developers] How to add View to xml file?

2012-03-01 Thread Anirudh Loya
For Circle use path class! circle = new Path(); circle.addCircle(150,150,100,Direction.CW); On Thu, Mar 1, 2012 at 1:44 AM, Adail Horst the.sp...@gmail.com wrote: Hi, I have a TV Box runing android 2.3.4. This TV BOx dont have SU command and dont have any USB Client (have 3 USB Host

[android-developers] My eclipse can't produce APK anymore

2012-03-01 Thread mark2011
Dear All : Today I found that my eclipse went wrong. After I update the program save it in the projects, Eclipse doesn't produce the APK automatically. How do I to generate the apk? Thanks in advanced. My Eclipse is Indigo under Windows/XP. BR, Mark -- You received this message

[android-developers] Re: Avoiding FAILED BINDER TRANSACTION error when updating lots of widget bitmaps

2012-03-01 Thread Efi Merdler-Kravitz
YuviDroid, confirmed your bug, happens on the BitmapDrawable constructor, the DENSITY_DEFAULT is being used which is medium density. On Feb 29, 11:48 am, Efi Merdler-Kravitz efi.merd...@gmail.com wrote: I think that medium density is being used by default. The only way I found to bypass it is

Re: [android-developers] application unable to access internet on device while working properly on android emulator?

2012-03-01 Thread Jagruti Sangani
Hello, the Internet connection is on in the device but still not work. On Thu, Mar 1, 2012 at 3:41 PM, Chalavadi Sagar sagarchalav...@gmail.comwrote: check the wifi connection in your device , whether it is connected or not to make sure that your device is enabled for the use of internet based

[android-developers] Re: Avoiding FAILED BINDER TRANSACTION error when updating lots of widget bitmaps

2012-03-01 Thread Efi Merdler-Kravitz
I can see there is already an open bug - http://code.google.com/p/android/issues/detail?id=22590 you are more than welcomed to star it. On Thursday, March 1, 2012 12:27:56 PM UTC+2, Efi Merdler-Kravitz wrote: YuviDroid, confirmed your bug, happens on the BitmapDrawable constructor, the

[android-developers] put application in background run

2012-03-01 Thread Jagruti Sangani
hello, I want the application will go in background in run mode when i will press the home or back button.And when i want to come in front then it will come in front.like when incoming call then application run background but the call notification will display in front even if other application is

Re: [android-developers] put application in background run

2012-03-01 Thread Mulsaniya Bhadresh
follow the android application lifecycle. put ur code inside the onresume method.. -- 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

[android-developers] Re : Spinner

2012-03-01 Thread vivek elangovan
Hi members, Using spinner i display list of details what i need to do is after selecting the item using spinner i need to display a data in text field. For eg : If i m selecting state from spinner i need to display country name in next field. - Vivek Elangovan -- You

Re: [android-developers] Re : Spinner

2012-03-01 Thread arun kumar
spinner1 = (Spinner)this.findViewById(R.id.spinner1); final String[] groupes = new String[] {A, B, C, D, E, F, G, H}; ArrayAdapterCharSequence featuresAdapter = new ArrayAdapterCharSequence( this, android.R.layout.simple_spinner_item, new ArrayListCharSequence());

[android-developers] OpenGL es and min3d - textures only load on certain hardware and how to fix.

2012-03-01 Thread Jim Andresakis
Im using min3d to draw 3d boxes and Im applying textures to them in the updateScene method which works great on some devices and on others the textures wont load. Ive tried debugging by turning on the glflags but I dont see any errors what so ever. Ive done a lot of reading and googling the

Re: [android-developers] Re : Spinner

2012-03-01 Thread vivek elangovan
Hi Arun, How will i set the name for the next text field On Thu, Mar 1, 2012 at 4:44 PM, arun kumar hariarun2...@gmail.com wrote: spinner1 = (Spinner)this.findViewById(R.id.spinner1); final String[] groupes = new String[] {A, B, C, D, E, F, G, H}; ArrayAdapterCharSequence

Re: [android-developers] Re : Spinner

2012-03-01 Thread arun kumar
same you create another spinner and declare another string array and get the position value and assign to string and set to textbox thats it. On Thu, Mar 1, 2012 at 5:12 PM, vivek elangovan elangovan.vi...@gmail.comwrote: Hi Arun, How will i set the name for the next text field

[android-developers] Disable home button/screen

2012-03-01 Thread soheb somani
my app is alike my remote lock with app lock and when the screen is locked remotely by sending an SMS, and i have customized it such that in licked mode other person can make a call, so it presses a button and will switch to a default dialer. Now i want that when he is making a call he should not

Re: [android-developers] Disable home button/screen

2012-03-01 Thread Mulsaniya Bhadresh
set proprerty of button to setenable=false. -- 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] Re: Disable home button/screen

2012-03-01 Thread Jim Andresakis
Im pretty sure you cant override the home button no matter what you do. You can override ever other button but that one. On Thursday, March 1, 2012 3:52:42 AM UTC-8, soheb somani wrote: my app is alike my remote lock with app lock and when the screen is locked remotely by sending an SMS,

Re: [android-developers] Re: Avoiding FAILED BINDER TRANSACTION error when updating lots of widget bitmaps

2012-03-01 Thread YuviDroid
Uhh great! I just added a comment + starred. I hope more devs will star it too so it gets some attention.. Cheers, Yuvi On Thu, Mar 1, 2012 at 11:56 AM, Efi Merdler-Kravitz efi.merd...@gmail.comwrote: I can see there is already an open bug -

Re: [android-developers] Re : Spinner

2012-03-01 Thread vivek elangovan
ok i will try that one ,if u any samples also pls send me On Thu, Mar 1, 2012 at 5:18 PM, arun kumar hariarun2...@gmail.com wrote: same you create another spinner and declare another string array and get the position value and assign to string and set to textbox thats it. On Thu, Mar 1,

[android-developers] Re: Android Project

2012-03-01 Thread Oli Wright
I would kill for a decent Groups Android app. The mobile interface never seems to load properly so always have to push through to the desktop version. On Thursday, March 1, 2012 9:04:52 AM UTC, Ali Chousein wrote: Agree with the comment above. Just thinking aloud. Would you consider

[android-developers] Re: Mute button in call

2012-03-01 Thread brian lee
Right, as I said this code it working. The microphone is getting muted. But there is no indication of it in the call, so if you mute it and look at the screen you have no idea if it is muted. So I wanted to update the button in the phone app, but I don't think that is possible. I think my only

Re: [android-developers] Re : Spinner

2012-03-01 Thread arun kumar
SOURCE CODE [main.xml] is ?xml version=1.0 encoding=utf-8? LinearLayout xmlns:android=http://schemas.android.com/apk/res/android; android:orientation=vertical android:layout_width=fill_parent android:layout_height=fill_parent TextView

[android-developers] Re: Android Project

2012-03-01 Thread Ali Chousein
BUT, keep also in mind that if you develop such an app, clearly specify that it's your personal app. You shouldn't make the slightest implication that it's an official app. Otherwise probably Google will cancel your developer account for good reasons.

[android-developers] Radio Frequency Change Intent

2012-03-01 Thread Siva Prakash
Hi Is there any way for me to capture intent when FM Radio Frequency changed ? -- 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

Re: [android-developers] Temperature widget implementation in android

2012-03-01 Thread TreKing
On Thu, Mar 1, 2012 at 2:04 AM, sagar shende sagar...@gmail.com wrote: Hey hi, anybody tell me about Temperature widget implementation in android Tell you what? http://www.catb.org/~esr/faqs/smart-questions.html

[android-developers] Re: Errors :Consumer closed input channel or an error occurred. events=0x8 Channel is unrecoverably broken and will be disposed!

2012-03-01 Thread Yoo Cai
There seems no solution still? I have met this problem when i developing an app with opengsES, I used a intbuffer to draw a 3d graph,and defined a native order buffer... It is running well on the emulator, but when i a installed it to my moto MB525, the error occurs. Anyone know why? On 2月21日,

[android-developers] Re: Routing TTS to SCO bluetooth headset

2012-03-01 Thread JJ
Maybe check out http://stackoverflow.com/questions/7212783/android-playing-sound-over-sco-bluetooth-headset On Wednesday, February 29, 2012 9:14:41 AM UTC-5, RedBullet wrote: I am trying to get my android app to use the TTS engine to send the audio to my old BT headset. I have tried

[android-developers] emulator date and time

2012-03-01 Thread Jagruti Sangani
hello,i want to store the date and time in the form of -mm-dd HH:MM:SS in database.this date and time is of emulator.I have use the calender and it will give the time and date perfectly but i have access this all things in one method of listener.and i have made the all variable as public.but

Re: [android-developers] Radio Frequency Change Intent

2012-03-01 Thread Mark Murphy
The Android SDK does not have FM radio support. On Thu, Mar 1, 2012 at 8:06 AM, Siva Prakash siva.yuvan2...@gmail.com wrote: Hi Is there any way for me to capture intent when FM Radio Frequency changed ? -- You received this message because you are subscribed to the Google Groups Android

Re: [android-developers] emulator date and time

2012-03-01 Thread TreKing
On Thu, Mar 1, 2012 at 7:51 AM, Jagruti Sangani jagruti.sang...@inextrix.com wrote: i have made the all variable as public.but when i display that variable out side listener then it will display as null.so what can i do. On the very limited info, sounds like a scope issue. In no particular

[android-developers] Re: ActionBar and Tabs question:

2012-03-01 Thread emil10001
Here's a tutorial that I just wrote on how to do this: http://feigdev.com/blogs/2 -John On Wednesday, February 29, 2012 11:43:48 AM UTC-5, Craig Smith wrote: Just put the modes in drop down beside the category in the Action Bar. It still looks good that way, even with another set of

[android-developers] Regarding apk installation programatically getting callback for successful installation.

2012-03-01 Thread ashiq sayyad
Hi, Hope all doing well. I am trying to install app using following intent.. Intent intent = new Intent(Intent.ACTION_VIEW); intent.setDataAndType(apkUri, application/vnd.android.package- archive);

[android-developers] Converting Custom Dialog to DialogFragment.

2012-03-01 Thread Bluemercury
Hi! So im currently trying to make my custom dialogs persistent after rotation and i was going to use the onCreateDialog method for that. but it seems to be deprecated and instead i was pointed to the DialogFragment class. I've seen some tutorials in android developer page and my main question

Re: [android-developers] Regarding apk installation programatically getting callback for successful installation.

2012-03-01 Thread TreKing
On Thu, Mar 1, 2012 at 9:08 AM, ashiq sayyad ashiqsay...@gmail.com wrote: Can I get these callbacks to my programme depending on user selection means whether installation is successful or declined... Maybe, if that Activity returns some response:

[android-developers] ProgressBar in OpenGL

2012-03-01 Thread Rikki
I need to create multiple progress bars in OpenGL. Can anybody help in creating that. 1.x or 2.0 any will be okay to use. I have tried a lot to achive that but all efforts in vain and I need to show something concrete in a very short duration. it will be helpful if anyone has something to share.

[android-developers] ProgressBar in OpenGL

2012-03-01 Thread Rikki
I need to create multiple progress bars in OpenGL. Can anybody help in creating that. 1.x or 2.0 any will be okay to use. I have tried a lot to achive that but all efforts in vain and I need to show something concrete in a very short duration. it will be helpful if anyone has something to share.

[android-developers] java.lang.SecurityException: Permission Denial, but my app does not change settings

2012-03-01 Thread Viktor Brešan
I have an app with about 6,000 active users. I also use ACRA for app crash reporting. While I was going through the crash reports I have found the following exception: java.lang.SecurityException: Permission Denial: writing com.android.providers.settings.SettingsProvider uri

[android-developers] stopping a thread after particular time.

2012-03-01 Thread Narendra Singh Rathore
Hi all developers, I am showing progress bar, before getting current GPS location (using Thread) in case if location is null. Now, my requirement is to dismiss the progress dialog in case if location is unavailable even after the specified amount of time, and perform something else in that case.

[android-developers] How can i make my texture (or polygon) transparent when i want? (opengl es 1.1)

2012-03-01 Thread saex
I have a square polygon with a texture (opengl es 1.1), and i need that when i want the polygon get's invisible and when i want the polygon turn's visible again. It's frustrating because seems to be a very easy thing but i can't find any tutorials or examples for do it on google or stackoverflow.

Re: Go To ( http://adf.ly/20PrE )-)-) Re: [android-developers] WMV Easter Egg?

2012-03-01 Thread bob
True. It says here: http://vizio.custhelp.com/app/answers/list/c/321 What audio and video file type’s can I use with the Tablet? The file types that can be used with the Gallery Application on the VIZIO tablet are as follows: WMA, WMV, AVI, MP3, MP4, JPG, JPEG, AAC, ASF, 3GP, H.263, H.264.

[android-developers] correct XML?

2012-03-01 Thread bob
Can someone tell me if this is correct XML? Not sure about the two intent-filters. activity android:name=com.bob.Main_Activity android:label=@string/app_name android:screenOrientation=landscape intent-filter action

Re: [android-developers] correct XML?

2012-03-01 Thread MeKa
intent-filter/---look here intent-filter action android:name=com.bob.Main_Activity / /intent-filter 2012/3/1 bob b...@coolfone.comze.com: Can someone tell me if this is correct XML? Not sure

[android-developers] Re: Performance issue executing native code on ICS

2012-03-01 Thread Michael
Good tip! This is a print from top running the test application on a Nexus S with Gingerbread: User 89%, System 3%, IOW 0%, IRQ 0% User 282 + Nice 0 + Sys 12 + Idle 22 + IOW 0 + IRQ 0 + SIRQ 0 = 316 PID TID CPU% S VSS RSS PCY UID Thread Proc 771 771 86% R 104220K

Re: [android-developers] stopping a thread after particular time.

2012-03-01 Thread TreKing
On Thu, Mar 1, 2012 at 10:52 AM, Narendra Singh Rathore nsr.curi...@gmail.com wrote: I guess, I need another thread for performing that event after specified time, or stopping the previous thread. You don't need multiple threads, use AsyncTask.

[android-developers] Robotium Test Case

2012-03-01 Thread suram sridhar
Hi all, I Created a project on android, and i am planning to do robotium testing on that app. So i created the Project APK in debug mode and then i am trying to run a test case on this APK by using Robotium. But the problem is it is getting crashed. Please see the below logs and help me

[android-developers] Re: Performance issue executing native code on ICS

2012-03-01 Thread Chris Stratton
On Thursday, March 1, 2012 12:08:31 PM UTC-5, Michael wrote: Good tip! This is a print from top running the test application on a Nexus S with Gingerbread: User 89%, System 3%, IOW 0%, IRQ 0% User 282 + Nice 0 + Sys 12 + Idle 22 + IOW 0 + IRQ 0 + SIRQ 0 = 316 PID TID CPU% S VSS

Re: [android-developers] java.lang.SecurityException: Permission Denial, but my app does not change settings

2012-03-01 Thread Kostya Vasilyev
Some firmwares are so nice that they have their own (contrary to what's documented) ideas for permissions. One thing I've came accross is the 3.2.1 for the Samsung Galaxy Tab requires CHANGE_NETWORK_STATE to disable WiFi (but not to enable it). Another was some random permission on the HTC

[android-developers] Re: reading pdf

2012-03-01 Thread Jags
ok, somehow i could compile and make it run and it is giving me correct number of pages. Now, if you look at Vogella blog code, it gets an Image instance for 2nd page. but when i try to make it BitmapFactory.GetBitmap(instance.getRawBytes()) i get byte[] as null. getOriginalBytes also return Null

Re: [android-developers] application unable to access internet on device while working properly on android emulator?

2012-03-01 Thread Chris Stratton
On Thursday, March 1, 2012 5:41:40 AM UTC-5, Jagruti Sangani wrote: Hello, the Internet connection is on in the device but still not work. First I assume you have tested that the internet connection of the device works (using the web browser or something) . What type of internet connection

Re: [android-developers] How to update the Android SDK and AVD Manager on Eclipse?

2012-03-01 Thread santhosh b
Hi, install latest version sdk instead of upgrading from below site http://developer.android.com/sdk/index.html Thanks, Santhosh.B On Wed, Feb 29, 2012 at 11:57 PM, Terry terb...@gmail.com wrote: When I try to update all installed packages - or see Available packages, I get the

[android-developers] display selected image from gallery

2012-03-01 Thread Ashu Gupta
in a gridview, all images of SD card are displayed(like in gallery). If I click and select one picture, I want to display it on full screen. How to display image on full screen from gridview -- You received this message because you are subscribed to the Google Groups Android Developers group. To

Re: [android-developers] Why do I get some times the exception: ResourceNotFoundException on my device?

2012-03-01 Thread Narendra Singh Rathore
Hi, I would like to know why this exception will occur some times? ResourceNotFoundException In which scenarios this kind of exception will come? and what could be solution? How the mapping of the resources and R.java file is done? Could some one please explain me in

[android-developers] Cannot get TTS to work

2012-03-01 Thread Ken H
I've tested the APIDemo TestToSpeech example code on my phone (Galaxy S2) and it works fine, but when I take the *same code* and paste it into my app the TTS fails. I see an error in the LogCat saying intTts() failed to bind to service. I suspect the problem is in the line: mTts = new

[android-developers] Odd issue involving hardware acceleration

2012-03-01 Thread Ab
My app allows the user to draw on the screen by capturing and processing touch events. Additionally, my application makes use of Canvas.drawPicture and some other methods not supported by hardware acceleration. On some ICS devices there is an option to force hardware acceleration in settings:

[android-developers] landscaping

2012-03-01 Thread bob
I told my activity to go in landscape mode like so: activity android:name=com.bob.Main_Activity android:label=@string/app_name android:screenOrientation=landscape It works when I launch manually. However, when I config it to launch at boot, it starts

[android-developers] Re: java.lang.SecurityException: Permission Denial, but my app does not change settings

2012-03-01 Thread Jonathan S
Well, it did said requires android.permission.WRITE_SETTINGS On Thursday, March 1, 2012 11:37:13 AM UTC-5, Viktor Brešan wrote: I have an app with about 6,000 active users. I also use ACRA for app crash reporting. While I was going through the crash reports I have found the following

[android-developers] Re: Cannot get TTS to work

2012-03-01 Thread Ken H
Fixed it. FYI ~ I moved the whole TTS process from my activity to a class by itself (other activities are going to be using it anyway), but then, instead of using this for the first parameter of the TextToSpeech() function, I used getApplicationContext(). I also initialized mTts after

Re: [android-developers] Re: java.lang.SecurityException: Permission Denial, but my app does not change settings

2012-03-01 Thread Kostya Vasilyev
That's my point: a) the docs for adjustSuggestedStreamVolume doesn't mention this permission, although it does say: This method should only be used by applications that replace the platform-wide management of audio settings or the main telephony application b) you said your code doesn't call this

[android-developers] Layout text justificaiton question:

2012-03-01 Thread Mark Winchester
I've got a GUI coded up, and it works pretty well, but I'm having an issue getting everything formatted just right. Currently, there exists a ListView on the page. This list view is then filled with horizontal LinearLayouts that have a TextView (label) a either an EditText or Spinner,

[android-developers] Does WakeLock override the proximity sensor turning off the screen in a phone call?

2012-03-01 Thread Shri
My app runs in the background and the screen lock (WakeLockType.SCREEN). This prevents the screen from turning off. However, if a phone call comes in and I cover the proximity sensor, the screen turns off on Gingerbread but not on IceCreamSandwich. Which is the correct behavior? -- You received

Re: [android-developers] Layout text justificaiton question:

2012-03-01 Thread TreKing
On Thu, Mar 1, 2012 at 5:33 PM, Mark Winchester mwinches...@gmail.comwrote: I can get the text/spinners lined up correctly by setting the width of the TextView, but the text on the TextView doesn't bump up against the input controls, like I want it to. Can anybody suggest a way to get this

[android-developers] Relative Layout width/height is not work programmatically?

2012-03-01 Thread Duygu Kahraman
This is my post:http://stackoverflow.com/questions/9526577/relative- layout-width-height-is-not-work-programmatically Can anybody help me? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

Re: [android-developers] Re: java.lang.SecurityException: Permission Denial, but my app does not change settings

2012-03-01 Thread Nikolay Elenkov
On Fri, Mar 2, 2012 at 7:34 AM, Kostya Vasilyev kmans...@gmail.com wrote: My advice -- still the same, just ignore. As your app gets mode downloads, there'll be stranger and stranger crash and ANR reports. +1 Just wait till someone tries to run it on BlackBerry, then you'll get some really

Re: [android-developers] Odd issue involving hardware acceleration

2012-03-01 Thread Dianne Hackborn
What that call is doing is not turning off HW drawing, it is creating a separate layer (bitmap) which that specific view can do software drawing in to, but it is then drawn to the window with the GPU. My first answer would be that this option is a developer option, and users shouldn't be changing

Re: [android-developers] Re : Spinner

2012-03-01 Thread vivek elangovan
Hi arun, thanks for the sample i already gone through this i need sample for spinner and corresponding dependent value selection. On Thu, Mar 1, 2012 at 6:27 PM, arun kumar hariarun2...@gmail.com wrote: SOURCE CODE [main.xml] is ?xml version=1.0 encoding=utf-8? LinearLayout

Re: [android-developers] Odd issue involving hardware acceleration

2012-03-01 Thread Romain Guy
Also note that drawPicture() is a lot less useful since the framework will create display lists (the equivalent of Picture) automatically for you under the scene. On Thu, Mar 1, 2012 at 6:48 PM, Dianne Hackborn hack...@android.com wrote: What that call is doing is not turning off HW drawing, it

[android-developers] Prevent multiple copies of an Android service

2012-03-01 Thread Alan Smith
The docohttp://developer.android.com/reference/android/content/Context.html#startService%28android.content.Intent%29 for startService states If this service is not already running, it will be instantiated and started (creating a process for it if needed); if it is running then it remains running.

[android-developers] How to turn on “Show outline for all views”

2012-03-01 Thread IS SOA
please see the image below and i am try on my local machine using but i dont see the option what i see in the image, is there a way to turn on those option (grid around the layout) thing... same question i am looking for and here is the question with images on it:

[android-developers] Re: How to find out when any activity starts or get focus

2012-03-01 Thread Put_tiMe
How do I register for IActivityWatcher? On Thursday, March 18, 2010 3:02:48 PM UTC+5:30, Csenteri Barna wrote: I understand this scenarios Bob and I agree with You. But what you say is DOABLE right now very-very easy with a background service which is polling the current task (current

Re: [android-developers] put application in background run

2012-03-01 Thread abhijeet tomar
Hi Jagruti, I think you should make Service for thatbecause services runs in background. -- 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

Re: [android-developers] put application in background run

2012-03-01 Thread Narendra Singh Rathore
Hi Jagruti, I guess Abhijeet is right. You must follow that in order to get your target. Hope that will help you out. -- 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

Re: [android-developers] stopping a thread after particular time.

2012-03-01 Thread Narendra Singh Rathore
You don't need multiple threads, use AsyncTask. Thanks Treking for the suggestion. But, I am new for using AsyncTask. May you please suggest any good tutorial for it? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group,

[android-developers] Re: How can i make my texture (or polygon) transparent when i want? (opengl es 1.1)

2012-03-01 Thread Yan
Using the alpha values would add a huge layer of complexity to your program. Perhaps instead you may consider having a switch in your code to throw those polygons in your color buffer rather than your texture buffer... On Thursday, March 1, 2012 9:53:44 AM UTC-7, saex wrote: I have a square

[android-developers] Re: OpenGL es and min3d - textures only load on certain hardware and how to fix.

2012-03-01 Thread Yan
Well there's an API calls that can easily load several different standard graphics file formats, for example: //Get the texture from the Android resource directory InputStream is = context.getResources().openRawResource(R.drawable.onlylowercasefilenameshere); Bitmap bitmap = null; try {

Re: [android-developers] stopping a thread after particular time.

2012-03-01 Thread Chalavadi Sagar
better you use handler if your finds out any location then just call the handler.sendEmptyMessage() from there and handle that message and dismiss the progress bar in the handleMessage() method of handler. Ch.B.Sagar. On Fri, Mar 2, 2012 at 11:56 AM, Narendra Singh Rathore nsr.curi...@gmail.com

[android-developers] Re: ProgressBar in OpenGL

2012-03-01 Thread Yan
Maybe you should move the code that's slow-loading into your onDrawFrame along with some extra conditions something like this: if (continueLoading) { ContinueLoadingPartsHere(); DrawSomeMoreProgressBarHere(); if (loadingPartsDone) { continueLoading = false; } } if

[android-developers] Re: Losing memory on tablet but not phone

2012-03-01 Thread Yan
I'm sorry that I cannot afford to sell to the only 1% of the Android Market using ICS. I already have 6 apps that are not selling, but I digress... After further work I've discovered that allocateDirect is consuming exactly 65636 bytes for every vertexBuffer that is created (again, on the

Re: [android-developers] stopping a thread after particular time.

2012-03-01 Thread Narendra Singh Rathore
better you use handler if your finds out any location then just call the handler.sendEmptyMessage() from there and handle that message and dismiss the progress bar in the handleMessage() method of handler. Thanks Sagar, Plz suggest if there exists any other possible method for achieving my

[android-developers] Re: Display problems with Galaxy Notes?

2012-03-01 Thread Terry
I am unable to reproduce the problem using the Android Tools on Eclipse - with the actual xml layout files. But there does not seem to exist an option for a screen similar to that of the Galaxy Notes (5.7 inch, 1280x800 pixels). Has anybody else experienced this problem? Regards, Terry. On Mar

Re: [android-developers] Android Project

2012-03-01 Thread Ahmed Mahmoud
Anyone here with a good idea is probably already working on it and keeping it to themselves. Ask yourself: What do I need? What would I pay for? What is not already available? What is lacking in some app I already use? Answer one or more of those and you should get some ideas, pimp.

[android-developers] Re: Android Project

2012-03-01 Thread Ahmed Mahmoud
On Thursday, March 1, 2012 11:04:52 AM UTC+2, Ali Chousein wrote: Agree with the comment above. Just thinking aloud. Would you consider developing an application which gives a notification when someone comments to your post in this discussion platform? Maybe you can generalize it for