[android-developers] Re: Google Maps API

2010-11-25 Thread pedr0
Murphy mmur...@commonsware.com wrote: https://github.com/jgilfelt/android-mapviewballoons On Thu, Nov 25, 2010 at 4:25 AM, pedr0 pulsarpie...@gmail.com wrote: hi at all, I am currently developing an little application which use API Maps and I have some problems: I would like shows

[android-developers] Passing object via intent

2010-11-25 Thread pedr0
and I am a little bit confused about the second way, the question is: - using the second solution what may happens if the activity which share static object is killed by the OS ? Thanks a lot pedr0 -- You received this message because you are subscribed to the Google Groups Android Developers

[android-developers] Re: Passing object via intent

2010-11-25 Thread pedr0
: http://developer.android.com/reference/android/content/Intent.html#pu..., java.util.ArrayList? extends android.os.Parcelable) -- Kostya 25.11.2010 18:55, pedr0 пишет: Hi at all, I read some tutorial about the object of this topic (Passing object via intent) there tutorial

[android-developers] Google Map Pin

2010-11-24 Thread pedr0
Google Maps, I found the pin image over internet but I don't know if I can really use it, is this image under some copyright? Thanks a lot. pedr0 -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android

[android-developers] Re: Activity state

2010-11-24 Thread pedr0
Hmm it's okay, but there isn't a way to show the activity stack of my application? On 23 Nov, 07:33, Kumar Bibek coomar@gmail.com wrote: YEs, Switch to the Logcat window, and you will see it, else type adb logcat in the commant prompt, and it will show you the logs. On Nov 22, 2:00 

[android-developers] Re: Google Map Pin

2010-11-24 Thread pedr0
Thanks so much! On 24 Nov, 13:57, Mark Murphy mmur...@commonsware.com wrote: On Wed, Nov 24, 2010 at 4:42 AM, pedr0 pulsarpie...@gmail.com wrote: I am looking for a default marker for overlay items in the maps, but I haven't finded it, something is wrong or really Google Map API don't

[android-developers] Re: how to implement Two line text with different colors on one button

2010-11-24 Thread pedr0
If your text will never change you can apply an image at your botton, in your image you can do that without problem. On 24 Nov, 14:57, xi developer xidevelope...@gmail.com wrote: In my android app development, I have one button, the button text is not a single color text, it is two lines

[android-developers] Re: Spinner Style

2010-11-23 Thread pedr0
Do you are looking a spinner wheel or a spinner menu? On 23 Nov, 10:28, Jithin danijanuv...@gmail.com wrote: Hi friends,            As part of my project I need a spinner that should display items like HTML select tag rather opening a new window.            Is it possible...? -- You

[android-developers] Re: Initial position of scrollbar in ListView

2010-11-23 Thread pedr0
You can use this function: http://developer.android.com/reference/android/widget/ListView.html#setSelection(int) ListView.setSelection(int position) It works? On 23 Nov, 13:33, Prateek Jain mrprateekj...@gmail.com wrote: Hi, I think headers are the part of ListView (therefore 1st

[android-developers] Activity state

2010-11-22 Thread pedr0
Hi at all, I want see the state of my activity (Pause Stop Resume etc etc) without override each methods like this: onPause(){ super(); Log.d(TAG, this activity+name+will come in Pause state); } There is a way to see that using an Android tools ?DDMS allow to see this, I think not but I ask for

[android-developers] Retrieve language settings

2010-11-19 Thread pedr0
Hi at all, for my application I need to know the application setting language at runtime for select a correct URL to do a correct query over internet. There is a method for knows what language are currently my application configured? Thanks a lot. -- You received this message because you are

[android-developers] Re: Retrieve language settings

2010-11-19 Thread pedr0
Solution! COUNTRY_LANGUAGE = res.getConfiguration().locale.getLanguage() +_+res.getConfiguration().locale.getCountry(); UID_VALUE = tManager.getDeviceId(); On 19 Nov, 12:45, pedr0 pulsarpie...@gmail.com wrote: Hi at all, for my application I need to know the application setting language

[android-developers] ListView row control

2010-11-18 Thread pedr0
Hi at all, there is a method for knows what rows are currently displayed in a ListView? I would like to use it for free memory. Thanks a lot. -- 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] Re: ListView row control

2010-11-18 Thread pedr0
Thanks Kostya!It works! On 18 Nov, 15:26, Kostya Vasilyev kmans...@gmail.com wrote: 18.11.2010 17:20, pedr0 пишет: Hi at all, there is a method for knows what rows are currently displayed in a ListView? I would like to use it for free memory. Thanks a lot. See AdapterView

[android-developers] Bar Application wheel

2010-11-16 Thread pedr0
Hi! I would like add a rotating wheel which indicates that my application do somethings in the application bar (where its name appears ). Someone knows how should I do? Thanks a lot. pedr0. -- You received this message because you are subscribed to the Google Groups Android Developers group

[android-developers] Re: Bar Application wheel

2010-11-16 Thread pedr0
, pedr0 pulsarpie...@gmail.com wrote: Hi! I would like add a rotating wheel which indicates that my application do somethings in the application bar (where its name appears ). Someone knows how should I do? Thanks a lot. pedr0. -- You received this message because you

[android-developers] Re: Bar Application wheel

2010-11-16 Thread pedr0
I think this code is okay, You agree? public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); requestWindowFeature(Window.FEATURE_PROGRESS); setProgressBarIndeterminate(true); On Nov 16, 4:19 pm, pedr0 pulsarpie...@gmail.com wrote: I tried and I have not error

[android-developers] Re: Bar Application wheel

2010-11-16 Thread pedr0
that my application do somethings in the application bar (where its name appears ). Someone knows how should I do? Thanks a lot. pedr0. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android

[android-developers] Re: Bar Application wheel

2010-11-16 Thread pedr0
I found the problem, see: http://stackoverflow.com/questions/1138809/android-showing-indeterminate-progress-bar-in-tabhost-activity On Nov 16, 4:41 pm, pedr0 pulsarpie...@gmail.com wrote: I cannot see the wheel, my activity is a tab activity, can this make wrong something? Tanks a lot

[android-developers] Use HTTP persistent connection

2010-11-12 Thread pedr0
Hi at all, I am writing a little application that make a heavy use of image from internet, but I have a little issue. I have write this code for download images over internet, these image fill some fields on a ListView : loop{ method =

[android-developers] Get a view with findViewById()

2010-11-08 Thread pedr0
Hi at all, I try to customize a tab and I write this code: super.onCreate(savedInstanceState){ setContentView(R.layout.main); TabHost mTabHost = getTabHost(); Button mytab = (Button)findViewById(R.id.mybutton); Intent browser = new

[android-developers] Get a view with findViewById()

2010-11-08 Thread pedr0
Hi at all, I try to customize a tab and I write this code: super.onCreate(savedInstanceState){ setContentView(R.layout.main); TabHost mTabHost = getTabHost(); Button mytab = (Button)findViewById(R.id.mybutton); Intent browser = new

[android-developers] ListView graphic overflow inside a tab

2010-11-03 Thread pedr0
Hi at all, I am a little newbye in Android programming and I try to make a UI which shows five tab at the bottom on the windows, one of these tab when pressed will shows a list of rows. In fact when the tab is pressed I start another activity which contains a ListView, the main Activity is an

<    1   2