[android-developers] Why the memory usiage is kept on raising when running an application on Android Emulator with GPU support

2013-08-14 Thread Mike Yeh
Dear Sirs, I used SDK API level 17 to test OpenGL application. Currently I feld that the emulator with GPU support is much unstable after running some applications. When I monitored the ProcessExplorer I found that the memroy usage was kept on raising after running an application. Does anyone

[android-developers] post photo on facebook

2013-08-14 Thread Sadhna Upadhyay
Hi Guys, can some one tell me that how to post photo on fb. Thanks in advance. sadhna -- 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] post photo on facebook

2013-08-14 Thread Michael Banzon
Sure, You log in, and go to your timeline and presse the Add Photos / Video link/button on the top, like this: [image: Inline image 1] After that the on-screen text should guide you. If this is about interacting with the facebook api etc. please let us know what you have tried so far and what

[android-developers] Re: Designed for tablets with both minSdkVersion and targetSdkVersion tags?

2013-08-14 Thread MobileVisuals
I agree that we can't just ignore the older OS versions. I think they mean targetSdkVersion is declared with value 11 or higher or minSdkVersion is declared with value 11 or higher. So minSdkVersion is declared with value 11 or higher is not required, but if you for instance add minSdkVersion =

[android-developers] Re: close on minimise application

2013-08-14 Thread Piren
that's a bad idea... unless your application is just one activity, it will probably piss your users off that they have to navigate it from the start every time it is being backgrounded. take mbanzon's idea - each activity will need to request the password if needed. You can do it easily by

[android-developers] Select unselect image on list view

2013-08-14 Thread Amit Mangal
Hi there, i have a list view and in that list view in each row i have image unselectimage.png. i want when some one click on that i want to replace that image with selected.png. suppose if item is already selected then i want to unselected image. suppose list view is having 10 items in out of

Re: [android-developers] Re: how to get a list of locales supported by device we're running on

2013-08-14 Thread Latimerius
On Tue, Aug 13, 2013 at 11:45 PM, Kostya Vasilyev kmans...@gmail.comwrote: So you have an HTC... I've got two on my desk, and the language / locale list on both of them is region-specific: Russian (Russia, Ukraine, Georgia, other former Soviet republics) English (same list of countries)

[android-developers] Re: Designed for tablets with both minSdkVersion and targetSdkVersion tags?

2013-08-14 Thread Kostya Vasilyev
You're right, it's: targetSdkVersion = 11 OR minSdkVersion = 11 I must have been blind, and missed the or. Sorry. -- K On Wednesday, August 14, 2013 12:08:50 PM UTC+4, MobileVisuals wrote: I agree that we can't just ignore the older OS versions. I think they mean targetSdkVersion is

[android-developers] Re: Select unselect image on list view

2013-08-14 Thread Kostya Vasilyev
Why not use a state list drawable? http://developer.android.com/guide/topics/resources/drawable-resource.html#StateList -- K On Wednesday, August 14, 2013 12:53:23 PM UTC+4, Amit Mangal wrote: Hi there, i have a list view and in that list view in each row i have image unselectimage.png.

[android-developers] GCM based sample app link

2013-08-14 Thread Shadab Khatib
Hello Can someone post the link of the GCM based Client sample app link provided by Google licensed under Apache License 2.0 similar to the sample apps in the tutorials to all other simple features of UI design. -- You received this message because you are subscribed to the Google Groups

[android-developers] Google map is not showing

2013-08-14 Thread nemi chhimpa
Hi friends, I am using map api android v2 for google map. It is only showing the zoom control button an blank map. I followed all steps mention in google map api v2 doc. In logcat, unable to find Lmap message showing. -- You received this message because you are subscribed to the Google Groups

[android-developers] Android webview with multi redirect url

2013-08-14 Thread cybersun
Hi all, I am creating an app that can edit word documents saved on google drive. From Android app, my webview will show an document manager page, click on a file (an Edit icon on webview), webview will redirect to google-drive-document-edit address. I used a WebViewClient, checked 3 methods:

[android-developers] Extract camera Photos and Videos from External and Internal Storage

2013-08-14 Thread vgokila
Hi, We are working on to get all the camera photos and videos (Media Image and Videos) both in External and Internal Storage. We have used the below code to get the file path of media files. Under the folder /DCIM, there are folders like Camera, 100ANDRO, 100MEDIA which is storing the camera

[android-developers] resizing a webview dynamically

2013-08-14 Thread alex b
I'm trying to resize a webview in a relativelayout when a user clicks a button but it's proving to be quite difficult. Here's what I've tried. In every case the webview simply repositions itself but never resizes. *protected* *void* toggleMap(){ ... lp*=new*

[android-developers] any help to avoid the force close in the android application?

2013-08-14 Thread ansal
Hi, I have some code that is working in the try catch block but still system force close the application instead of throwing the exception in the try catch block.any help to avoid the force close in the android? -- You received this message because you are subscribed to the Google Groups

Re: [android-developers] any help to avoid the force close in the android application?

2013-08-14 Thread TreKing
On Wed, Aug 14, 2013 at 1:15 PM, ansal ashish.a...@gmail.com wrote: I have some code that is working in the try catch block but still system force close the application instead of throwing the exception in the try catch block.any help to avoid the force close in the android? Debug your