[android-developers] Re: Selecting an radio button item in a multi page list

2013-10-16 Thread Piren
If you're using that pattern, then the ViewHolder is referenced by the Tag of the view... On Wednesday, October 16, 2013 5:16:44 AM UTC+3, galapogos wrote: Hi, I actually have a ViewHolder in my adapter class, and in it, I have an int position. How do I access it when I select a list item

[android-developers] stylesheet does not support in Android 4.1 webview and above versions

2013-10-16 Thread bharath
Hi, I have a WebView in my android application which opens my web application. my web application has it's own stylesheet and it works properly up to Android SDK 4.0. If i use my application in Android SDK 4.1 above, it doesn't support my stylesheet. My WebView code, webview = (WebView)

[android-developers] Job alert!

2013-10-16 Thread Harri Smått
weCame -- 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 options,

Re: [android-developers] Job alert!

2013-10-16 Thread Josphat Muchiri
Do u need an android job or what On Oct 16, 2013 5:13 PM, Harri Smått har...@gmail.com wrote: weCame -- 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

[android-developers] how to track the location continously...

2013-10-16 Thread Abhilash Baddam
Hi, I am trying to track the User current location continoulsy till he s In my app there are two buttons *Start* and *Stop.* * * When the user clicks on button Start button, I want to track his location continuously till he clicks on Stop button I am not using the any service or

[android-developers] Re: Adding a required file, external to the app, to the Google Store ???

2013-10-16 Thread Nathan
On Sunday, October 13, 2013 1:39:28 AM UTC-7, farmerbb wrote: I hired a programmer to write an app for me, a search engine, which is free. For the app to be any use at all, you must also install one or more databases (also free) either from a separate web site (link provided) or you

[android-developers] Re: how to track the location continously...

2013-10-16 Thread MathieuB
http://developer.android.com/training/location/receive-location-updates.html You're welcome! -- 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] Creating an AVD of resolution 1024x768

2013-10-16 Thread limtc
Hi, I am trying to test for a tablet device of resolution 1024x768 (including taking screenshots). However I don't have access to the hardware. I thought I can simply create an AVD of this resolution, but I can't find this resolution in the device list! I also can't seem to be able to create

Re: [android-developers] Re: how to track the location continously...

2013-10-16 Thread Abhilash Baddam
Hi MAthieu, Thanks for the reply. In The link provided by you there they are using Google Play Services for that we need Google Playservices SDK. My app supports from Android 2.2 onwards can I use those PLayservices API in my APP?? On Thu, Oct 17, 2013 at 7:09 AM, MathieuB blanc...@gmail.com

Re: [android-developers] how to track the location continously...

2013-10-16 Thread Kristopher Micinski
If you want continuous location updates you generally want a foregrounded service anyway... Kris On Wed, Oct 16, 2013 at 1:42 PM, Abhilash Baddam abhilash.androiddevelo...@gmail.com wrote: Hi, I am trying to track the User current location continoulsy till he s In my app there are two

Re: [android-developers] how to track the location continously...

2013-10-16 Thread Abhilash Baddam
Hi Kristopher, You mean in the service i have to request for location updates continuously..? On Thu, Oct 17, 2013 at 8:29 AM, Kristopher Micinski krismicin...@gmail.com wrote: If you want continuous location updates you generally want a foregrounded service anyway... Kris On Wed, Oct

Re: [android-developers] Creating an AVD of resolution 1024x768

2013-10-16 Thread TreKing
On Wed, Oct 16, 2013 at 8:56 PM, limtc thyech...@gmail.com wrote: I also can't seem to be able to create a custom one in AVD Manager. There are two tabs: Android Devices and Device Definitions. In that second one, on the right, there is a button: New Device Hit that.

Re: [android-developers] how to track the location continously...

2013-10-16 Thread TreKing
On Wed, Oct 16, 2013 at 10:09 PM, Abhilash Baddam abhilash.androiddevelo...@gmail.com wrote: You mean in the service i have to request for location updates continuously..? He's referring to a Service with an ongoing notification so the user can see that your app is running and, more

Re: [android-developers] how to track the location continously...

2013-10-16 Thread Kristopher Micinski
That's right, and I highly doubt you really want continuous location updates anyway. If you really do, then you do want this architecture. A foreground service is sort of the way you build apps that live indefinitely. Kris On Wed, Oct 16, 2013 at 11:41 PM, TreKing treking...@gmail.com wrote:

[android-developers] Set Playback speed in Android Media Player

2013-10-16 Thread deepak
I am live streaming using HLS from a ipCamera to Android phone, but the video is always playing in fast forward. Is there any way we can reduce the playback speed of the native android media player or is there any other method by which i might be able to fast forward issue? Thanks in advance