[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 em

[android-developers] Accessing IMSI number

2012-01-09 Thread Siva Prakash
Hi Accessing IMSI number of any device is legal ? Or it will create any issues if we do that with/with out users knowledge. Thanks -- 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@goo

Re: [android-developers] Re: text color of a ListView

2011-10-21 Thread siva prakash
you can define your own text syle On 08/18/2011 02:40 AM, bob wrote: This didn't work. On Aug 17, 2:45 pm, Jeremy Dagorn wrote: Hi, In your xml layout file : Best, On Aug 17, 11:29 am, bob wrote: Anyone know an easy way to change the text color of a ListView on Android? -- You r

[android-developers] Streaming Video

2011-11-03 Thread Siva Prakash
Hi I have list of videos in my storage server from which I want to stream them to phone. What is the best way and protocol (Anything other that HTTP if ) to do this? I dont want to download them to local and show. Thanks -- You received this message because you are subscribed to the Google Gro

[android-developers] Location - GPS/Network

2011-11-12 Thread Siva Prakash
Hi I'm trying to take the current location using GPS or Network which ever is connected. The following code works fine to me if my mobile connected with WiFi or GPS turned ON. But if both of them turned ON/Connected then it doesnt give me any result locationManager.requestLocationUpdates(Location

[android-developers] Location - Address Issue

2011-11-13 Thread Siva Prakash
Hi Im trying to get the sublocality from Map API, when I use the following URL http://maps.googleapis.com/maps/api/geocode/json?latlng=13.0445756,80.2447062333&sensor=false Im getting { "long_name" : "T Nagar", "short_name" : "T Nagar", "types" :

[android-developers] Location API

2011-11-14 Thread Siva Prakash
Hi What is the best way to get Sub Location Here is the code Im using double latitude = location.getLatitude() ; double longitude = location.getLongitude() ; List addresses = gc.getFromLocation(latitude, longitude, 1); Address address = addresses.get(0); address.getSubLocality() ; But most

Re: [android-developers] Location API

2011-11-15 Thread Siva Prakash
; double longitude = location.getLongitude() ; List addresses = gc.getFromLocation(latitude, longitude, 1); Address address = addresses.get(0); address.getSubLocality() ; Anything I need to do to get it consistently? Or Can I use the above said URL directly to get data? On Tue, Nov 15, 2011 at 4

[android-developers] Tab with in Expandable List

2011-11-16 Thread Siva Prakash
Anybody can help me on how to put a Tabe View inside Expandable List ? Appreciate if someone pass me an example or tutorial ? - Thanks -- 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@

[android-developers] Layout Height

2011-11-16 Thread Siva Prakash
Hi I have created custom layout http://schemas.android.com/apk/res/android"; android:orientation="horizontal" android:layout_width="fill_parent" android:layout_height="15dip" android:gravity="center_vertical" Here I mention height as a constant value if I put it in small

[android-developers] Dynamic List

2011-11-17 Thread Siva Prakash
Hi I want to build a listpreference - Text with Checkbox - ArrayList to hold an object (that object will have 2 properties text and boolean value they will be set in the list) - Whe

[android-developers] Location Manager

2011-11-21 Thread Siva Prakash
Hi Im listening for current location by locationManager.requestLocationUpdates( LocationManager.NETWORK_PROVIDER, 5000, 1000.0f, locationListener); I have couple of questions - Will it work though I close my application ? - Anyway for me to locationManager.removeUpdates () w

[android-developers] Updating Android Product

2011-11-23 Thread Siva Prakash
Hi I have published a product in Android market some time back now I want to upgrade it. What should I do? Should I have to change the version in my manifest and re-register it? Thanks -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To po

[android-developers] Linear Layout

2011-11-23 Thread Siva Prakash
Hi I have a Linear Layout in my project where I put header and footer. Also there are some event attached to to footer. Since it will appear in all pages is there any way for me to build it is a common layout and load in all pages? So that I need not repeat the code in every page. Thanks -- Yo

Re: [android-developers] Re: Is it possible to have a static view common to various activities in the application?

2011-11-28 Thread siva prakash
Hi, You can do this in two ways, Either you can maintain a static class to store the changes, you want to be reflected in the starting activity, or store the values as extras before starting the required activity, and retrieve them in OnCreate function On 11/29/2011 11:23 AM, B.Arunkumar wr

Re: [android-developers] Need Intent Help

2011-11-29 Thread siva prakash
If you want to access those methods in various activities, why dont you create a simple java class and acess them?? , if you want to share variables across different activities, u can save them in AppPreferences . Please provide me more details if i didnt get u :) On 11/29/2011 04:04 PM, Kiran

[android-developers] Resource File

2011-10-02 Thread Siva Prakash
Hi I want to keep my XML file in a text file and read from Android code. I couldnt keep it in String Values because I have tags "<" ">" in many places. What is the best way? Or I have to handle with escape characters in String file it self? Thanks -- You received this message because you are su

Re: [android-developers] Re: Layout

2011-10-03 Thread Siva Prakash
Thanks for all your update. Even I don't mind to remove Back button but I want to know what is the best of keeping top bar with at least settings button. Thanks On Mon, Oct 3, 2011 at 7:43 PM, Kostya Vasilyev wrote: > It depends on the actual use case. > > For example: preference activities t

Re: [android-developers] Layout

2011-10-03 Thread Siva Prakash
Thanks !! @Ubiracy Santos :- I'll try to get it by my own if any help needed will post you guys back. On Mon, Oct 3, 2011 at 5:22 PM, Ubiracy Santos wrote: > Ok. you can use relative layouts to do this. Do you want one sample > project? > > 2011/10/3 Siva Prakash : > &g

[android-developers] Video in WebView

2011-10-08 Thread Siva Prakash
Hi Im trying to load a video in WebView but it doesnt do that? Any settings need to be marked? -- 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 thi

Re: [android-developers] Video in WebView

2011-10-08 Thread Siva Prakash
Thanks On Sun, Oct 9, 2011 at 10:22 AM, Subin Sebastian wrote: > Hello Siva, > I suggest you to put your code here for someone to find out why it > doesn't do that. > > Regards. > > On 10/9/11, Siva Prakash wrote: > > Hi > > > > Im trying

Re: [android-developers] Re: Video in WebView

2011-10-09 Thread Siva Prakash
Yes I want to play a video from You tube or from another HTML file. On Sun, Oct 9, 2011 at 1:22 PM, Efi Merdler-Kravitz wrote: > By video you mean youtube? > > On Oct 9, 7:49 am, Siva Prakash wrote: > > Thanks > > > > This code is working for normal web pag