Re: [android-beginners] Default values in SharedPreferences

2010-08-06 Thread TreKing
On Fri, Aug 6, 2010 at 3:24 PM, Bret Foreman bret.fore...@gmail.com wrote:

 This is such a generic problem that I'm hoping someone has already solved
 it and I can get something off the shelf. Any suggestions?


I haven't done this (yet) but you could probably store your default values
as resources then reference them in the preferences layout and in code as
necessary. Still slightly redundant, but at least then there is only one
place to go modify the default value.

-
TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago
transit tracking app for Android-powered devices

-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

ATTENTION: Android-Beginners will be permanently disabled on August 9 2010. For 
more information about this change, please read [http://goo.gl/xkfl] or visit 
the Group home page.

Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


Re: [android-beginners] Re: Default values in SharedPreferences

2010-08-06 Thread TreKing
On Fri, Aug 6, 2010 at 5:38 PM, Bret Foreman bret.fore...@gmail.com wrote:

 One other consideration is what the next version of Android will do about
 this. It's pretty clear that this is an important missing feature. I expect
 they'll eventually make a version of getXXX that reads the default value
 from preferences.xml if there's no key-value pair in the database yet,
 and throws an exception if no default value is found.


I can't imagine this would change anytime soon, if at all. I've never found
this to be that big of a deal personally. Granted, it's annoying when you
have to change the default value, but my suggestion for using resources
should solve that.


 From that perspective, it makes more sense to put a wrapper around getXXX
 and do my own parsing of the default values from preferences.xml. This
 has the added advantage that addition and removal of new preference keys can
 happen in the same file where the defaults are defined. And then when the
 improved version of getXXX comes out, I can just remove the wrapper.


Those are big assumptions about what will or will not happen.


 Does this code look right for getting at the raw xml data?


Seems like overkill. Assuming you're in Activity:
InputStream is = getResources().openRawResource(R.xml.preferences);

That's it.

-
TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago
transit tracking app for Android-powered devices

-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

ATTENTION: Android-Beginners will be permanently disabled on August 9 2010. For 
more information about this change, please read [http://goo.gl/xkfl] or visit 
the Group home page.

Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


Re: [android-beginners] Re: Importing a keystore into Eclipse

2010-08-05 Thread TreKing
On Wed, Aug 4, 2010 at 11:23 PM, Bret Foreman bret.fore...@gmail.com
 wrote:

 The keystore is in the .android folder but it does not show in the Export
 Wizard.


. folders are hidden by default, maybe that's why?

But why put your keystore in the .android folder? I'd put it somewhere a
little more under your own control, like in your project's folder.


 I can see keystores that were created by the wizard but can't see any that
 are built with the keytool.


So just use the wizard?


 The debug/production key paradigm breaks down as soon as you need the API
 key for google maps, which must be generated from the application key. I
 don't notice any automated tool to swap the API keys when you switch
 application keys. It's all manual - error prone and time consuming, in other
 words.


Yes, but you really don't do this that often.

See this thread:
http://groups.google.com/group/android-developers/browse_thread/thread/a2c0cf7ecd0c3c7b/2b963ca3abe2eaa5

-
TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago
transit tracking app for Android-powered devices

-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

ATTENTION: Android-Beginners will be permanently disabled on August 9 2010. For 
more information about this change, please read [http://goo.gl/xkfl] or visit 
the Group home page.

Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


Re: [android-beginners] Google Maps on .apk application not showing maps

2010-08-05 Thread TreKing
On Thu, Aug 5, 2010 at 11:47 AM, Ivanico ivan.fran...@gmail.com wrote:

 Does anyone might know what is going on or has came across this as well?


If you exported the app with your signing key, you need to generate an
associated release MAP API key. Follow the instructions on the Maps API
documentation page, the section on obtaining a key.

-
TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago
transit tracking app for Android-powered devices

-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

ATTENTION: Android-Beginners will be permanently disabled on August 9 2010. For 
more information about this change, please read [http://goo.gl/xkfl] or visit 
the Group home page.

Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


Re: [android-beginners] Google map tiles missing with adb install

2010-08-04 Thread TreKing
On Tue, Aug 3, 2010 at 8:26 PM, Bret Foreman bret.fore...@gmail.com wrote:

 If I export to an apk file and install it to the same phone from the
 command line (adb install path/ filename.apk) then the MapView shows the
 Google logo and the grid, but
 no map. Any ideas what might be going wrong?


How are you exporting?
How are you signing your APK after exporting?

Normally, when you export it's for a production / release build, which
requires a corresponding production / release Maps API key. My money's on
you using a debug Maps API key with your release signing key.

-
TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago
transit tracking app for Android-powered devices

-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

ATTENTION: Android-Beginners will be permanently disabled on August 9 2010. For 
more information about this change, please read [http://goo.gl/xkfl] or visit 
the Group home page.

Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


Re: [android-beginners] Re: Google map tiles missing with adb install

2010-08-04 Thread TreKing
On Wed, Aug 4, 2010 at 10:45 AM, Bret Foreman bret.fore...@gmail.comwrote:

 Except I don't have a production/release signing key yet.


I would generate one, then a corresponding release Maps API key and try
that.


 I've only ever generated the debug key, which I also used to generate the
 maps API key. I'm using the Export wizard in Eclipse with the sign
 the package box checked and my debug key chosen.


Out of curiosity, why are you exporting with a debug key? You can just run
from Eclipse ...

AFAIK, exporting is for generating a release build. I would not be surprised
if there's something under the hood that's breaking because it's a debug
key.


 I shouldn't be able to even install an unsigned package, right?


No idea, but I don't see why not, if you know what you're doing.

-
TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago
transit tracking app for Android-powered devices

-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

ATTENTION: Android-Beginners will be permanently disabled on August 9 2010. For 
more information about this change, please read [http://goo.gl/xkfl] or visit 
the Group home page.

Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


Re: [android-beginners] Re: Google map tiles missing with adb install

2010-08-04 Thread TreKing
On Wed, Aug 4, 2010 at 11:16 AM, Bret Foreman bret.fore...@gmail.comwrote:

 I was thinking that publish meant placing in the Marketplace.


I believe that's what is meant. I could be wrong, of course - I didn't write
it :)


 Perhaps we should log a bug against the documentation to make that clearer?


If by we, you mean you, go for it =P

-
TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago
transit tracking app for Android-powered devices

-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

ATTENTION: Android-Beginners will be permanently disabled on August 9 2010. For 
more information about this change, please read [http://goo.gl/xkfl] or visit 
the Group home page.

Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


Re: [android-beginners] ATTENTION: Android-Beginners will be permanently disabled on August 9 2010

2010-08-04 Thread TreKing
2010/8/4 Kostya Vasilyev kmans...@gmail.com

 If there are so many regrets about the closing of this list isn't it
 possible for anyone to create a mailing list with Google Groups? Let's call
 it android-for-beginners or whatever. Anyone?



On Tue, Aug 3, 2010 at 12:52 PM, Greg Donald gdon...@gmail.com wrote:

 I don't see any reason why we can't have one that's not moderated by
 Google:

 http://groups.google.com/group/android-for-beginners

 Moderator volunteers please contact me after joining.


-
TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago
transit tracking app for Android-powered devices

-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

ATTENTION: Android-Beginners will be permanently disabled on August 9 2010. For 
more information about this change, please read [http://goo.gl/xkfl] or visit 
the Group home page.

Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


Re: [android-beginners] Importing a keystore into Eclipse

2010-08-04 Thread TreKing
On Wed, Aug 4, 2010 at 3:57 PM, Bret Foreman bret.fore...@gmail.com wrote:

 How do I get Eclipse to know about a new keystore?


When you use the Export Wizard, it should give you the option to use an
existing keystore and let you browse to it.


 Also, once I have a second keystore, how do I tell the debugger that I
 want to use it rather than the debug keystore for debugging?


I don't think you can. And I see no reason to do so.
Why do you need to use a different one for debugging?

-
TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago
transit tracking app for Android-powered devices

-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

ATTENTION: Android-Beginners will be permanently disabled on August 9 2010. For 
more information about this change, please read [http://goo.gl/xkfl] or visit 
the Group home page.

Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


Re: [android-beginners] Cannot load kml files through Emulator Control in Eclipse..

2010-08-03 Thread TreKing
On Tue, Aug 3, 2010 at 6:57 AM, prasad prasad.gang...@gmail.com wrote:

 I cannot load kml file through Load KML option in Emulator Control of
 Eclipse


Why not?

-
TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago
transit tracking app for Android-powered devices

-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

ATTENTION: Android-Beginners will be permanently disabled on August 9 2010. For 
more information about this change, please read [http://goo.gl/xkfl] or visit 
the Group home page.

Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


Re: [android-beginners] Checking to See if I directory is there and if not creating one?

2010-08-02 Thread TreKing
On Mon, Aug 2, 2010 at 5:09 AM, Justin justinbrett1...@gmail.com wrote:

 If I wanted to check to see if a directory called mypictures was on
 my SD Card, and if it wasn't created one, how would I do this
 please.


Like this: http://tinyurl.com/34sjymt


 If I then wanted to make this appear in my gallerys, do I need to do
 anything special?


Make what appear? The name of the folder? The path to the folder? The
contents of the folder?
What are your gallerys?

-
TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago
transit tracking app for Android-powered devices

-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


Re: [android-beginners] Problem sending variable to java activity.

2010-08-02 Thread TreKing
On Mon, Aug 2, 2010 at 5:14 AM, Justin justinbrett1...@gmail.com wrote:

 I am writing a app, and basically I want to carry accross a variable
 from one java file to another.

 So from my first java file I am calling the second one by:


Just to clarify, a java file is something you edit, not something your
call or carry variables across. Those are instances of your Activity.


 Which loads up the new page fine, but then causes a error and forces
 close.


And the error and force close message would be what?

-
TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago
transit tracking app for Android-powered devices

-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


Re: [android-beginners] How to reuse and include another package?

2010-07-31 Thread TreKing
On Sat, Jul 31, 2010 at 2:52 PM, Victoria victoriasarabu...@gmail.comwrote:

 I found some already existing code.


Where? In the SDK? On the interwebs? In your basement?


 I was wondering if I could reuse an existing package within my java and
 xml code without having to code it all again?


Depends on the code and the license behind it.


 If it is possible to reuse the existing code how could I do that??


Sure, just copy the files into your project, assuming the aforementioned
license allows this.

I have a feeling I've misunderstood your question though ...

-
TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago
transit tracking app for Android-powered devices

-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


Re: [android-beginners] custom listview add button above listeview

2010-07-30 Thread TreKing
On Thu, Jul 29, 2010 at 7:25 PM, calmchess calmchesspla...@gmail.comwrote:

 i want to add a single button above the listview without useing addheader


Why not?

-
TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago
transit tracking app for Android-powered devices

-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


Re: [android-beginners] Re: how to self-close an Activity

2010-07-30 Thread TreKing
On Fri, Jul 30, 2010 at 1:04 PM, cellurl gpscru...@gmail.com wrote:

 Its not actually closing an about-box, its on a things-are-progressing
 type pop-up window.


Well that makes quite the difference =)

I still wonder why a things-are-progressing type pop-up would close after
some time and not, you know, when things-are-done-progressing ... but it's
your app.

Regardless, I would go with Justin's suggestion to use a Timer.

-
TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago
transit tracking app for Android-powered devices

-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


Re: [android-beginners] Placing a MapView inside a LinearLayout

2010-07-30 Thread TreKing
On Fri, Jul 30, 2010 at 3:51 PM, Bret Foreman bret.fore...@gmail.comwrote:

 I'm sure it's something basic. Any advice?


You're using this inside a MapActivity, of course?

-
TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago
transit tracking app for Android-powered devices

-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


Re: [android-beginners] List Preference not taking up default value

2010-07-30 Thread TreKing
On Fri, Jul 30, 2010 at 2:04 PM, Bret Foreman bret.fore...@gmail.comwrote:

 The list of values has 7 choices and I'm setting the default value in one
 case to 2 (3rd item
 in list) and the other case to 3 (4th item in list).


Is 2 and 3 what the user sees or what you use as the setting in the
background?
It should be the latter.

For example, if you have a font size setting and the user's options are
Small, Medium, Large and the corresponding values are 12, 14, 16, the
default value for Medium would be 14, not Medium.

-
TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago
transit tracking app for Android-powered devices

-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


Re: [android-beginners] Re: Placing a MapView inside a LinearLayout

2010-07-30 Thread TreKing
On Fri, Jul 30, 2010 at 4:53 PM, Bret Foreman bret.fore...@gmail.comwrote:

 Well, you see, that's the thing. What I really want is a MapView
 embedded in a larger Activity where one half the screen is a
 (smallish) map and the other is an address and other details about the
 particular location of a marker on the map.


You didn't answer the question, but I'm going to assume no =)

MapView must be used inside a MapActivity. What you do besides that is up to
you.


 Think of how the pushpins work in Yelp when you mouse over them. Except you
 don't want the text to appear on the map the way it does on Yelp because the
 user's hand
 obscures it.


Don't know about yelp, but pretty much all map-based apps (including my own)
show a small popup directly on the map screen above the icon that was
tapped.


 My idea is that the user uses their left thumb to activate a pushpin and
 the relevant text appears on the right-side panel in a TextView. Naturally,
 right or left handedness would be a preferences setting. ;)


OK. That's perfectly doable with MapActivity. Just add the relevant view
before or after the MapView and deal with it like any other activity.

Although I would question the idea of using half the screen to the left or
right for this. Most phones are held vertically, meaning they're longer from
top to bottom than side-to-side. If you're going to split this narrow space
in half, it's going to look really strange. Splitting the screen vertically
would make more sense IMO.

-
TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago
transit tracking app for Android-powered devices

-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


Re: [android-beginners] Map Key

2010-07-29 Thread TreKing
On Wed, Jul 28, 2010 at 11:18 PM, NBS and...@gmail.com wrote:

 Now I am using a generated map key on my system to work.
 But I dont know what this value will be if I have to upload to the market.


It's whatever you generated for your signing key.

Read this:
http://code.google.com/android/add-ons/google-apis/mapkey.html

-
TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago
transit tracking app for Android-powered devices

-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


Re: [android-beginners] Map Key

2010-07-29 Thread TreKing
On Wed, Jul 28, 2010 at 11:18 PM, NBS and...@gmail.com wrote:

 Now I am using a generated map key on my system to work.
 But I dont know what this value will be if I have to upload to the market.


It's whatever you generated for you signing key.

Read this:
http://code.google.com/android/add-ons/google-apis/mapkey.html

-
TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago
transit tracking app for Android-powered devices

-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


Re: [android-beginners] how to self-close an Activity

2010-07-29 Thread TreKing
On Thu, Jul 29, 2010 at 6:39 AM, cellurl gpscru...@gmail.com wrote:

 I want to auto-close my about-window after 10 seconds


Why? Do you not trust the user to do this? What if they're not done with it?

-
TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago
transit tracking app for Android-powered devices

-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


Re: [android-beginners] debug application key and beta testers

2010-07-27 Thread TreKing
On Tue, Jul 27, 2010 at 11:09 AM, Bret Foreman bret.fore...@gmail.comwrote:

 Now I've got a couple of beta testers and Google Maps isn't working for
 them.


What does isn't working mean? If tiles aren't showing up, it's probably
the key. If it's crashing or insulting their moms, then you have a different
issue.


 Is it time to get a real application key and a new Maps key or is there
 another way to run the beta phase?


Which key you use shouldn't matter, AFAIK, as long as they match.

-
TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago
transit tracking app for Android-powered devices

-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


Re: [android-beginners] Re: debug application key and beta testers

2010-07-27 Thread TreKing
On Tue, Jul 27, 2010 at 5:03 PM, Bret Foreman bret.fore...@gmail.comwrote:

 Something going wrong with the connection factory. Is that a key problem?


That's always there and has no effect on anything, AFAIK.

Again, what does it isn't working mean?

-
TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago
transit tracking app for Android-powered devices

-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


Re: [android-beginners] Re: debug application key and beta testers

2010-07-27 Thread TreKing
On Tue, Jul 27, 2010 at 5:22 PM, Bret Foreman bret.fore...@gmail.comwrote:

 The map view comes up and draws the grid but no map is drawn on the
 N1. It's fine on my Droid.


Just N1? Or does it not work on other phones as well? Does it work on the
emulator?

I would try to rebuild it and try again.

-
TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago
transit tracking app for Android-powered devices

-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


Re: [android-beginners] Using google map

2010-07-25 Thread TreKing
On Sun, Jul 25, 2010 at 8:05 PM, NBS and...@gmail.com wrote:

 I just want to know whether I can use inbuild google map on my
 application??


Depends on what you want to do with it. And you can't assume that it will
always be inbuild, as it may very well not be on every device.


 I mean to say is there are many functions on google map application and I
 want to use them on my application.

So instead of creating a new MapActivity, I will like to use the existing
 google map.
 I am not sure, whether its possible or not.


 Could anyone please suggest me whether its possible or not.


Um, no. You can't just use the features of the Maps app as you wish. The
most you can do is call the app with startActivitiy and pass some arguments
as specified here:
http://developer.android.com/guide/appendix/g-app-intents.html

If you want anything more than that, you'll have to use MapActivity and roll
the functionality yourself.

-
TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago
transit tracking app for Android-powered devices

-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


Re: [android-beginners] TextView @id/android:empty - What am i doing wrong?

2010-07-24 Thread TreKing
On Sat, Jul 24, 2010 at 4:05 AM, Justin Anderson janderson@gmail.comwrote:

 Try taking out the android:layout_below attribute from the TextView...  I'm
 not sure if that is the problem, but I have a feeling it is.


I agree with this. I set my TextView height to fill_parent as well, though I
doubt that makes a different. The layout_weight attribute also seems suspect
...

If you're still not getting anywhere, get rid of everything but the main
layout, the listview, and the textview. Remove all the properties from them,
set their widths and heights to fill_parent, then add the other properties
back one at a time to see which is causing the issue.

-
TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago
transit tracking app for Android-powered devices

-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


Re: [android-beginners] ProgressDialog Handling

2010-07-24 Thread TreKing
On Sat, Jul 24, 2010 at 7:11 PM, NIK nikolaos.katsa...@gmail.com wrote:

 I am using a Handler to dismiss the ProgressDialog but i don't know how to
 continue my
 main program flow after the progress dialog.


You want to do something after the thread is done ... so at the end of the
thread dismiss the dialog and start the new logic flow.


 I tried to use a while loop that called a method from the Thread indicating
 when the networking staff was over, but then the ProgressDialog didn't
 show until the Thread completed its work.


Well yeah, you're blocking the UI thread which is responsible for showing
the ProgressDialog. If you don't let it continue it will never get to show
the dialog. Never block the UI thread.


 The only solution that i can think of is to create a method for the program
 flow after the ProgressDialog and call that method from the handler class.


Precisely.

-
TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago
transit tracking app for Android-powered devices

-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


Re: [android-beginners] TextView @id/android:empty - What am i doing wrong?

2010-07-23 Thread TreKing
On Fri, Jul 23, 2010 at 5:59 PM, Nick Richardson
richardson.n...@gmail.comwrote:

 Is there something i have to call in code to make this work?  What am i
 doing wrong?


I have @id/android:list (no '+') and @+id/android:empty (yes '+') and it
works for me. Maybe that's it?

Also, does my ListView have to have the id @id/android:list in order for
 this to work, or can i give it a different id?


It does if you're using it in a ListActivity. Otherwise, no.

-
TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago
transit tracking app for Android-powered devices

-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


Re: [android-beginners] SharedPreferences editor commit() returning false

2010-07-22 Thread TreKing
On Thu, Jul 22, 2010 at 1:06 PM, Bret Foreman bret.fore...@gmail.comwrote:

 Note that the key/value pair Some_String/someInt does not exist
 in preferences.xml and I presume the editor should create it.


That should be the case.


 Perhaps that presumption is wrong and that's why the commit is failing?


Don't think so.

If so, how do I create a new key/value pair in the preferences, one that
 is not visible to the user?


I would just use PreferenceManager.getDefaultPreferences() (or whatever it
is).


 Do I need to create a separate preferences file for that purpose or will
 the default one support that?


The default should be fine.

-
TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago
transit tracking app for Android-powered devices

-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


Re: [android-beginners] Re: SharedPreferences editor commit() returning false

2010-07-22 Thread TreKing
On Thu, Jul 22, 2010 at 4:20 PM, Bret Foreman bret.fore...@gmail.comwrote:

 Any ideas?


As Justin just pointed out, save the Editor object in a variable and use
that througout. According to the docs for edit():
Create a new Editor for these preferences, keyword being new.

In essence you're saving to one editor then commiting to another, which
clearly won't work.

-
TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago
transit tracking app for Android-powered devices

-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


Re: [android-beginners] [Android Doubt] ListView inside Layout with Scroll

2010-07-21 Thread TreKing
On Tue, Jul 20, 2010 at 12:25 PM, Carlos Junior
carlosmacielj...@gmail.comwrote:

 If a have some components in my screen and a listView in the end how
 could I scroll the entire screen?


You can't.


  LinearLayout does not support scroll right?


No, usually you wrap it in a ScrollView.


  Besides, ListView inside ScrollView is a bad idea,


It's not a bad idea as much as it doesn't work.


 so I ask the android experts, how this problem could be solved?


Write your own containers? Good luck with that.


 Example of layout:
 TextView/
 Button/
 EditText/
 Button/ Button/
 TextView/
 ListView/

 Is android incompatible with this kind of screen?


Not at all. This will work fine - just that the only thing that will scroll
is the ListView.

-
TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago
transit tracking app for Android-powered devices

-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


Re: [android-beginners] Google Image on Google map

2010-07-21 Thread TreKing
On Wed, Jul 21, 2010 at 2:38 AM, NBS and...@gmail.com wrote:

 Could anyone suggest me how I can hide the Google image.  OR is there
 anyway to draw that image.


You have no control over this image. Some phones are known to have issues
with Google Maps, sometimes showing a red square where that logo is supposed
to be.

What difference does it make if it shows up or not anyway?

-
TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago
transit tracking app for Android-powered devices

-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


Re: [android-beginners] Notification.FLAG_NO_CLEAR not working as expected

2010-07-20 Thread TreKing
On Sat, Jul 17, 2010 at 12:49 PM, Bret Foreman bret.fore...@gmail.comwrote:

  notification.defaults |= Notification.FLAG_NO_CLEAR;

 I expect this to mean that pressing the clear button in the expanded
 notification screen will not clear this notification. But the button
 still clears the notification.


I have no idea what the proper use of notification.defaults, as the
documentation for it is pretty terrible. However, if you want to set the
properties of a notification, you should be setting the flags property.

notification.flags = Notification.DEFAULT_ALL | Notification.FLAG_NO_CLEAR;

-
TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago
transit tracking app for Android-powered devices

-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


Re: [android-beginners] Re: stubborn error wont go away

2010-07-20 Thread TreKing
On Mon, Jul 19, 2010 at 1:18 PM, martinmike2 martinmi...@gmail.com wrote:

  not sure what im doing wrong.


This:

Im just starting app development and learning java at the same time.


Do yourself a favor and learn Java first independently of Android. It will
be much easier to get your pants on if you do it one leg at a time.

-
TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago
transit tracking app for Android-powered devices

-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


Re: [android-beginners] List Activity Listener Not Working

2010-07-16 Thread TreKing
On Fri, Jul 16, 2010 at 1:38 PM, Saket Srivastav saketsrivasta...@gmail.com
 wrote:

 any reasons why the list item click listener is not working???


Probably

Try 
thishttp://developer.android.com/reference/android/app/ListActivity.html#onListItemClick(android.widget.ListView,
android.view.View, int, long) instead.

-
TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago
transit tracking app for Android-powered devices

-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


Re: [android-beginners] The Force Close Error is suddenly back...

2010-07-16 Thread TreKing
On Fri, Jul 16, 2010 at 4:31 PM, Victoria Busse victoriasarabu...@gmail.com
 wrote:

 I am sorry for the next question but I am really new to all this: how do I
 set breakpoints??


Why are you sorry?

I could tell you how to set a break point. Or I could tell you that simple
Google search lead me to this, where you can find the answer yourself. It's
really that simple.

http://help.eclipse.org/helios/index.jsp

-
TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago
transit tracking app for Android-powered devices

-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


Re: [android-beginners] The Force Close Error is suddenly back...

2010-07-16 Thread TreKing
On Fri, Jul 16, 2010 at 4:41 PM, TreKing treking...@gmail.com wrote:

 http://help.eclipse.org/helios/index.jsp


Stupid Frames:
http://help.eclipse.org/helios/index.jsp?topic=/org.eclipse.jdt.doc.user/tasks/task-add_line_breakpoints.htm

-
TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago
transit tracking app for Android-powered devices

-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


Re: [android-beginners] Implementing a Service - Call down to super?

2010-07-15 Thread TreKing
On Thu, Jul 15, 2010 at 2:46 PM, Jake Colman col...@ppllc.com wrote:

 When extending Service with your own Service, should you be calling down to
 the super implementation of the methods that are being overridden?


Considering that:
A - The sample in the documentation for Service does not and
B - Activities explicitly require that you call up to the overridden
functions but Service does not and
C - I don't and everything works just lovely

I would say no, you don't need to.


 If so, do you do it before or after you've invoked your own code?


Try both, see what happens. Or maybe someone who's looked at the source can
let us know what those functions do in Service, if anything. I'm assuming
they do nothing and are there are hooks for your code.

-
TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago
transit tracking app for Android-powered devices

-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


Re: [android-beginners] Intercept notification from other apps?

2010-07-15 Thread TreKing
On Thu, Jul 15, 2010 at 10:11 PM, Nick Richardson richardson.n...@gmail.com
 wrote:

 Is there a way to catch a notification from an app other than my own?


Notifications aren't really caught, but regardless, no. Apps are not aware
of others' notifications. Unless of course some Intent or Broadcast
accompanied it, but that will be an exception more than a rule.

-
TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago
transit tracking app for Android-powered devices

-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


Re: [android-beginners] Text box +radio menu(pop-up)

2010-07-14 Thread TreKing
On Wed, Jul 14, 2010 at 4:17 PM, Varun Khanduja varunkhand...@gmail.comwrote:

 I was wondering if it is possible to have a text box( For some text input)
 in the radio menu which pops up if one is having a list to select from.


If you're talking about the Context Menu, then no, I don't think so.
Besides, that would really not make sense ...

-
TreKing - Chicago transit tracking app for Android-powered devices
http://sites.google.com/site/rezmobileapps/treking

-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


Re: [android-beginners] Re: Text box +radio menu(pop-up)

2010-07-14 Thread TreKing
On Wed, Jul 14, 2010 at 8:14 PM, Varun Khanduja varunkhand...@gmail.comwrote:

 Thanks. I was thinking of a quick entry box according to the list items


Well nothing is stopping you from overriding the default behavior and doing
whatever you want. A long press listener with a custom dialog should be all
it takes, in the simplest sense.

-
TreKing - Chicago transit tracking app for Android-powered devices
http://sites.google.com/site/rezmobileapps/treking

-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


Re: [android-beginners] Can i remove my status bar notification without opening my app?

2010-07-13 Thread TreKing
On Tue, Jul 13, 2010 at 2:12 AM, Nick Richardson
richardson.n...@gmail.comwrote:

 Hi everyone,


Hi there.


 I have (what i hope is) a simple question.


Yup, pretty simple.


 I would like to remove my status bar notification when a user clicks on
 without my app being brought into the foreground in the process.


Have you tried looking at the documentation for Notification? Because right
there is this:
http://developer.android.com/reference/android/app/Notification.html#FLAG_AUTO_CANCEL

Done.


 I have tried creating a new class/intent that clears my notification then
 calls finish() in the onStart and onCreate methods.  It clears the
 notification, but my app is still opened as a result of the click on the
 notification.


Holy crap, that's completely unnecessary.


 Any help would be appreciated.


Sure thing.


 Thanks!


Welcomed!

On Tue, Jul 13, 2010 at 2:29 AM, Kostya Vasilyev kmans...@gmail.com wrote:

 It can be set up to trigger a BroadcastReceiver or even a Service - which
 could clear the notification without being visible to the user.


This is just as bad as calling an Activitiy to clear the notification and
then close itself.

-
TreKing - Chicago transit tracking app for Android-powered devices
http://sites.google.com/site/rezmobileapps/treking

-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


Re: [android-beginners] setting age

2010-07-12 Thread TreKing
On Fri, Jul 9, 2010 at 8:19 PM, Emmen Farooq farooq.em...@gmail.com wrote:

 Im making an app which would have to get users age , now what would be the
 appropriate control ?


One which allows number input?


 I have to make something like a scroll with numbers in it , but the user
 shouldnt  enter from the keyboard  , he should have something to select
 from , many thanks indeed


There's nothing like that built in, AFAIK. You'll have to roll you own,
which really shouldn't be that difficult.

-
TreKing - Chicago transit tracking app for Android-powered devices
http://sites.google.com/site/rezmobileapps/treking

-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


Re: [android-beginners] Restricting the input in an edit text

2010-07-12 Thread TreKing
On Sat, Jul 10, 2010 at 9:54 PM, Emmen Farooq farooq.em...@gmail.comwrote:

 Restrict special characters from being entered into an edit text ?


Look at the docs for EditText. There should be one or more listeners you can
attach to determine when text is entered into the control. From there, just
check for characters you don't want and remove them.

-
TreKing - Chicago transit tracking app for Android-powered devices
http://sites.google.com/site/rezmobileapps/treking

-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


Re: [android-beginners] onClick in ListView erratic ?

2010-07-12 Thread TreKing
On Sun, Jul 11, 2010 at 4:56 PM, Stu.Axon stu.a...@gmail.com wrote:

 Any idea what I'm going wrong ?


Nope, but I would start by figuring out which specific ones are not behaving
properly and seeing if there's a pattern.

-
TreKing - Chicago transit tracking app for Android-powered devices
http://sites.google.com/site/rezmobileapps/treking

-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


Re: [android-beginners] Money Transaction

2010-07-12 Thread TreKing
On Mon, Jul 12, 2010 at 3:57 AM, mayank bisht mayank.and...@gmail.comwrote:

 How can we do money transaction in android apps ? i.e How can we
 integrate PayPal and other online payment system in  Android
 applications ?


Search the Android groups for this topic. This has been asked, and
discussed, quite a bit.

-
TreKing - Chicago transit tracking app for Android-powered devices
http://sites.google.com/site/rezmobileapps/treking

-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


Re: [android-beginners] Re: Default values for ListPreference

2010-07-09 Thread TreKing
On Thu, Jul 8, 2010 at 9:29 PM, Bret Foreman bret.fore...@gmail.com wrote:

 However, as soon as I put 1 in for the default value, I get the following
 exception and stack trace.


Hmmm. Strange. Comparing you layout to my own, I realized that I always use
string-array, even for ints, and then just parse to the appropriate type,
though your way seems to be more correct.

Perhaps try string-array and parsing the values to see if that works? If so,
might be bug ... I'd double check the bug database to see if one exists for
this.

-
TreKing - Chicago transit tracking app for Android-powered devices
http://sites.google.com/site/rezmobileapps/treking

-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


Re: [android-beginners] changing the shape of buttons

2010-07-09 Thread TreKing
On Fri, Jul 9, 2010 at 2:29 PM, Justin Anderson janderson@gmail.comwrote:

 You would need to make your own to do that.


Or simply change the image shown on it to make it appear that way ...

-
TreKing - Chicago transit tracking app for Android-powered devices
http://sites.google.com/site/rezmobileapps/treking

-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


Re: [android-beginners] Default values for ListPreference

2010-07-08 Thread TreKing
On Wed, Jul 7, 2010 at 5:33 PM, Bret Foreman bret.fore...@gmail.com wrote:

 I can't understand from the Preferences and ListPreference documents
 whether the defaultValue attribute in preferences.xml should be the
 text choice displayed in the list, the Integer corresponding to that
 choice, or the index of the choice.


It's what the name implies - the VALUE you would expect to get from
getWhatever() methods of SharedPreferences. So if you have a boolean, the
default should be true or false, not Enabled or Disabled (your
possible text displays) nor 0 or 1 (index values).

Similarly for int value, it's 0, 1, or 3453463, or whatever. Etc, etc.


 It also seems like best practice to pick up the default value from the
 keys in arrays.xml rather than put in a literal string. Can someone spell
 out how it should work?


You'd probably have to have values in your res/ folder which you then
reference with the '@' notation. I find this more cumbersome than it's worth
so I don't bother, though it may be a good idea if your project is large and
/ or the preferences change a lot. Mine don't.

Suppose I want the default choice to be Fahrenheit. What should be the
 value of defaultValue?


Again, the VALUE you expect to get in code if nothing exists - in this case,
1.

-
TreKing - Chicago transit tracking app for Android-powered devices
http://sites.google.com/site/rezmobileapps/treking

-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


Re: [android-beginners] is here the right place for my question ?

2010-07-07 Thread TreKing
On Sun, Jul 4, 2010 at 5:18 PM, jean francois pion 
jean.francois.p...@free.fr wrote:

 I would like to know if there is a simple syntax/tag to define some text
 as an adress to trigger the use of google maps ?


AFAIK, this is automatic. The system recognizes certain strings as valid
addresses and creates a URI that can launch the Google Maps app.

-
TreKing - Chicago transit tracking app for Android-powered devices
http://sites.google.com/site/rezmobileapps/treking

-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


Re: [android-beginners] Is there a way to identify each activity uniquely?

2010-07-06 Thread TreKing
On Sat, Jul 3, 2010 at 7:04 PM, tim timyt...@gmail.com wrote:

 I would like to try identify something unique inside each activity (and
 reloaded data).


What do you mean you want to identify something unique in each activity?
What are you trying to accomplish?


 Is there a way to identify that those 2 are in fact different screens?


I haven't looked at the demo, but are you sure it's the same activity and
not a new one?


 Can I use the calling intent as a way to identify the activity with data?


If it's your own intent, sure. Just put some specific extras in there that
identify what you want. But identify the activity to who? What cares about
what activity is running?


 What if there are multiple intents that launches the same activity (with
 same data, is
 that possible?)


I think that would depend on the launch flags used to launch the activity.


 For example, I would like to differentiate the activity API Demos
 with Activity, alarm, device admin etc.. from the same activity but
 with the data App, Content, Graphics.


What? I have no idea what you're trying to do ...


 Or, if there is no way to uniquely identify an activity with data, is
 there a way that we can specify UID in AndroidManifest.xml or somewhere so
 that we can identify the activity?


I have no idea, but I still don't understand what you're trying to do.

-
TreKing - Chicago transit tracking app for Android-powered devices
http://sites.google.com/site/rezmobileapps/treking

-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


Re: [android-beginners] Re: Problem Using Geocoder

2010-06-30 Thread TreKing
On Wed, Jun 30, 2010 at 8:44 AM, Jake Colman col...@ppllc.com wrote:

 Yes, I am using the emulator and, yes, the emulator was created with a GPS.


Did you use DDMS to send the emulator a position?

-
TreKing - Chicago transit tracking app for Android-powered devices
http://sites.google.com/site/rezmobileapps/treking

-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


Re: [android-beginners] Problem Using Geocoder

2010-06-29 Thread TreKing
On Fri, Jun 25, 2010 at 8:23 AM, Jake Colman col...@ppllc.com wrote:

 Can anyone tell me what this means?

 As an aside, I wonder if this could be related to why Google Maps cannot
 show me my location and the Browser says location unavailable.


No sure, but based on you maps not having location and browser, error,
probably there is no GPS functionality. Are you using the emulator?

-
TreKing - Chicago transit tracking app for Android-powered devices
http://sites.google.com/site/rezmobileapps/treking

-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


Re: [android-beginners] Re: Issue?

2010-06-29 Thread TreKing
On Sat, Jun 26, 2010 at 12:46 PM, Anders lanils...@gmail.com wrote:

 What's up?


On Wed, Jun 16, 2010 at 1:45 PM, Mikey frak@gmail.com wrote:

 It is someone with a full mailbox, not much you can do about it I am afraid



 How come this happens when we post a message online, and it bounces back to
 our registered email address?


Because making a post to the group sends out a mass email to everyone in the
group, the reply address for which is the group itself. Thus the auto-reply
spams the list with each submission. As stated earlier, just make a filter
for it and never worry about it again.

-
TreKing - Chicago transit tracking app for Android-powered devices
http://sites.google.com/site/rezmobileapps/treking

-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


Re: [android-beginners] Re: Switch between views.

2010-06-25 Thread TreKing
On Tue, Jun 22, 2010 at 10:44 AM, m0ny3t dendydo...@gmail.com wrote:

 I am looking for better/good ways if there is any.

 Do u have nice links u can share?


None you couldn't find yourself on the official documentation or doing a
Google search for whatever you're interested in.

-
TreKing - Chicago transit tracking app for Android-powered devices
http://sites.google.com/site/rezmobileapps/treking

-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


Re: [android-beginners] application space files access.

2010-06-25 Thread TreKing
On Mon, Jun 21, 2010 at 7:27 AM, changdeo changdeojad...@gmail.com wrote:

 Can anybody please help me to create a file on application space and
 tell a way to read it.


There are various log-reading apps available for exactly this reason. You
can just have your users install one of those apps and send you the logs via
email.


 I am doing this

 String fileName = Environment.getExternalStorageDirectory()+/
 WFLog.txt;


That's for writing to the SD card, not application space.

Also, don't randomly append strings together to form file paths. Use the
various File constructors and functions to form a complete, valid File
object.

Alternative I thought was to create log file on sdcard but I can not delete
 it when application gets uninstalled. This also can be helpful if anybody
 knows how to delete sdcard files created by applicationon removal(unistall) of
 application.


I believe this is in the works, and maybe available in Froyo, I can't
remember.

-
TreKing - Chicago transit tracking app for Android-powered devices
http://sites.google.com/site/rezmobileapps/treking

-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


Re: [android-beginners] how to change colours in a .xml defined layout in run time

2010-06-23 Thread TreKing
On Wed, Jun 16, 2010 at 6:55 AM, ckloch htc.kl...@hotmail.com wrote:

 In theory it seems to be easy, but I would highly appreciate your help on
 how to do this in Android as I cannot see how I start changing the colours
 of the individual bar in the screen after initially defining the screen.


Whatever View you're using to represent the bars should have some background
property for changing it's background image or color. Try that.

-
TreKing - Chicago transit tracking app for Android-powered devices
http://sites.google.com/site/rezmobileapps/treking

-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


Re: [android-beginners] Android security features -how to protect our applications for client-they wanted to protect it

2010-06-23 Thread TreKing
On Tue, Jun 15, 2010 at 1:38 PM, SaiSriOrl sridhar.rangasw...@gmail.comwrote:

 the client wants an App to be secured so that no one can
 illegal downlod.thats our question.


You're not getting any response because:
1) your post is a bit difficult to read, though I'm assuming that's because
English isn't your first language
2) this is asked quite a bit on here and has been discussed to death - just
search the groups
3) most importantly, there is no such thing as a secure app and no way to
prevent illegal downloads, though there are things you can do to make it
harder. Google is your friend in that respect.

Good luck

-
TreKing - Chicago transit tracking app for Android-powered devices
http://sites.google.com/site/rezmobileapps/treking

-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


Re: [android-beginners] File Browsing or Customisation Activities

2010-06-22 Thread TreKing
On Tue, Jun 15, 2010 at 4:02 AM, redneon darrell.bl...@gmail.com wrote:

 I've seen the RingtonePreference activity, so I can probably get away with
 using that for browsing for ringtones but there doesn't appear to be
 anything similar for wallpapers.


Try looking into MediaStore.

-
TreKing - Chicago transit tracking app for Android-powered devices
http://sites.google.com/site/rezmobileapps/treking

-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


Re: [android-beginners] Re: Switch between views.

2010-06-21 Thread TreKing
On Mon, Jun 14, 2010 at 9:43 PM, m0ny3t dendydo...@gmail.com wrote:

 The question is:
 1. Do I did a correct the way calling the other activity?


Sure. Did you try it? Did it work?


  2. Is it effective if I pass the JSON text between intents?


Effective is arguable. Does it work? Then sure.

 3. How to pass an object between activities?


Make your object serializable, parcelable, or able to be stored in and
retrieved from a Bundle.

-
TreKing - Chicago transit tracking app for Android-powered devices
http://sites.google.com/site/rezmobileapps/treking

-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


Re: [android-beginners] LinearLayout in ScrollView

2010-06-10 Thread TreKing
On Thu, Jun 10, 2010 at 8:10 AM, manigault manig...@gmail.com wrote:

 I have LinearLayout with four item orientated vertically and with set
 LayoutWidth = 1.0 to fill the whole screen.


LayoutWidth = 1.0? Is that right? You probably want fill_parent.


 So any ideas


Since the weights are all equal, just remove them, it doesn't make sense.
Try setting the heights to wrap_content so they take up as much space as
they need, not try to fill the whole parent.

-
TreKing - Chicago transit tracking app for Android-powered devices
http://sites.google.com/site/rezmobileapps/treking

-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


Re: [android-beginners] Android Market

2010-06-03 Thread TreKing
On Thu, Jun 3, 2010 at 7:51 AM, Mac gor...@phoenixconsultingsvcs.comwrote:

 What is provided to developers after a sale?


A Google Checkout receipt.

-
TreKing - Chicago transit tracking app for Android-powered devices
http://sites.google.com/site/rezmobileapps/treking

-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


Re: [android-beginners] Re: Calculating distance between GPS position and way_point

2010-06-03 Thread TreKing
On Thu, Jun 3, 2010 at 4:13 AM, ckloch htc.kl...@hotmail.com wrote:

 But what does it mean by length 2 or greater?


The length of the array you pass in. If you only care about distance, you
pass an array of size 1.
If you care about the initial bearing, you pass in an array of size 2.
If you care about the final bearing, you pass in an array of size 3.

I honestly have no idea what the bearing refers to and have never used them.

How can I be sure that I read the correct result by reading results[0] ?(I
 assume it is as I have compared it with the actual physical distance).


That's what the function does - it stores the calculated distance in
results[0], so you can be pretty sure that's the correct result (it's never
steered me wrong).

-
TreKing - Chicago transit tracking app for Android-powered devices
http://sites.google.com/site/rezmobileapps/treking

-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


Re: [android-beginners] Re: LinkedIn Oauth authentication

2010-06-03 Thread TreKing
On Thu, Jun 3, 2010 at 4:27 AM, jrichards1...@googlemail.com 
jrichards1...@googlemail.com wrote:

 Any?


Since you've bumped your post twice now and still haven't gotten a response,
I'm guessing no.

Try a forum that's specifically geared towards the LinkedIn API - I suspect
the number of people on this list that have experience with it are very few,
if any.

-
TreKing - Chicago transit tracking app for Android-powered devices
http://sites.google.com/site/rezmobileapps/treking

-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


Re: [android-beginners] How might I do this (HorizontalScrollView question)?

2010-06-02 Thread TreKing
On Tue, Jun 1, 2010 at 8:38 PM, Michael Dorin bsddo...@gmail.com wrote:

 I want each of the layouts to occupy the whole screen and the user slides
 there finger left and right to get to each of them.


Look into ViewFlipper.

-
TreKing - Chicago transit tracking app for Android-powered devices
http://sites.google.com/site/rezmobileapps/treking

-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


Re: [android-beginners] Re: Can a full app (not widget) be postage stamp size?

2010-06-02 Thread TreKing
On Tue, Jun 1, 2010 at 11:07 PM, james pruett gpscru...@gmail.com wrote:

 I don't suppose any of you guys would write this for me?


Sure - how much are you willing to pay?

-
TreKing - Chicago transit tracking app for Android-powered devices
http://sites.google.com/site/rezmobileapps/treking

-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


Re: [android-beginners] Re: Calculating distance between GPS position and way_point

2010-06-02 Thread TreKing
On Wed, Jun 2, 2010 at 7:07 AM, ckloch htc.kl...@hotmail.com wrote:

 But what do the different options 1, 2 and 3 in float[] results =
 new float[1] refer to ?


This is explained in the documentation for that function.

-
TreKing - Chicago transit tracking app for Android-powered devices
http://sites.google.com/site/rezmobileapps/treking

-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


Re: [android-beginners] Can a full app (not widget) be postage stamp size?

2010-05-31 Thread TreKing
On Sun, May 30, 2010 at 3:04 PM, cellurl gpscru...@gmail.com wrote:

 Can an app not be full-screen?


Yes - check out themes, specifically the dialog theme.


  E.g. can I make a postage size app?


I don't know if there are limits on the size, but probably.

-
TreKing - Chicago transit tracking app for Android-powered devices
http://sites.google.com/site/rezmobileapps/treking

-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


Re: [android-beginners] Re: Printing keyCode

2010-05-31 Thread TreKing
On Sun, May 30, 2010 at 9:25 PM, Mauricio raubvo...@gmail.com wrote:

 Is that a good solution or I am opening myself to trouble?


Sure, why not?

-
TreKing - Chicago transit tracking app for Android-powered devices
http://sites.google.com/site/rezmobileapps/treking

-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


Re: [android-beginners] Re: Modifying date and time pickers

2010-05-31 Thread TreKing
On Sun, May 30, 2010 at 3:42 PM, Brian Victor homeusen...@brianhv.orgwrote:

 I don't have a project yet.  I want to replace the global controls so that
 (e.g.) the built-in calendar program becomes usable.  Right now it takes so
 long to set up an event that I don't even bother.


I see you point about the controls' usability. I think if you want to modify
this on the global level - for yourself you'll have to build your own
firmware and put it on your device. I don't know what this involves as I've
not done it myself, but you could probably get better info on the Android
Porting group.

If you want to contribute these changes to the official build, check the
Android source project page (http://source.android.com/source/index.html)
and start reading up on how to do so.

It you want to ask the user to choose a contact, you use an intent, right?


Not sure - contacts are delivered by content providers, which may or may not
require an intent - a cursory glance at the docs indicates that you don't -
but I haven't really done much with them, so I can't really say.


 If you want to ask the user to take a photo, you use an intent.


Yes, to launch the camera app that will take a picture, AFAIK.


  I'm not sure why choosing dates or times are so much different.


Well, there is no date and time content provider, so you couldn't query
for this like you would for contacts.
And there's date and time selection activity, so you couldn't start one up
to allow the user to pick a date and time.

In general, an intent is used to pass data along to some other system
(activity, service, whatever) have it receive it, do something with it, and
possible send something back. In this case, there wouldn't be anything (by
default) to receive a generic date and time picker intent.

-
TreKing - Chicago transit tracking app for Android-powered devices
http://sites.google.com/site/rezmobileapps/treking

-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


Re: [android-beginners] Modifying date and time pickers

2010-05-30 Thread TreKing
On Sat, May 29, 2010 at 8:41 PM, Brian Victor homeusen...@brianhv.orgwrote:

 I'd like to get started with Android development by scratching my biggest
 itch: the date and time pickers.


What's wrong with them?


 I'd like to make them much more efficient.


How so?


  * If I change those controls, will I be able to get the result onto
 my   Droid without rooting it or waiting for a patch to be accepted upstream
 and pushed to my phone by my carrier?


You have the entire source for Android - take the part you want (the
pickers) and throw them in your own project.


   * Is such a patch likely to be accepted?


I have no idea - maybe someone else can answer this for you.


  * Why are those controls implemented as dialog boxes rather than intents?


Because they're controls ... that users have to interact with ... how would
you do that with intents?

-
TreKing - Chicago transit tracking app for Android-powered devices
http://sites.google.com/site/rezmobileapps/treking

-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


Re: [android-beginners] share stuff to social networks

2010-05-28 Thread TreKing
On Fri, May 28, 2010 at 7:03 AM, Martin Obreshkov manig...@gmail.comwrote:

 But how to get information about what clients are installed on device ?


PackageManager

-
TreKing - Chicago transit tracking app for Android-powered devices
http://sites.google.com/site/rezmobileapps/treking

-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


Re: [android-beginners] Path Finder

2010-05-26 Thread TreKing
On Wed, May 26, 2010 at 11:36 AM, Ali Murtaza mralimurt...@gmail.comwrote:

 I need to find the path between two locations.


OK. Good luck.

 and i still unable how to create it..


What have you tried Anything???


 If any body has a tutorial please reffer me.


Did you try Google?

-
TreKing - Chicago transit tracking app for Android-powered devices
http://sites.google.com/site/rezmobileapps/treking

-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


Re: [android-beginners] Path Finder

2010-05-26 Thread TreKing
On Wed, May 26, 2010 at 12:00 PM, Ali Murtaza mralimurt...@gmail.comwrote:

 can you give me any guideline?


What have you tried Anything??? Did you try Google

-
TreKing - Chicago transit tracking app for Android-powered devices
http://sites.google.com/site/rezmobileapps/treking

-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


Re: [android-beginners] Path Finder

2010-05-26 Thread TreKing
On Wed, May 26, 2010 at 2:15 PM, Ali Murtaza mralimurt...@gmail.com wrote:

 Yap i try


What have you tried

-
TreKing - Chicago transit tracking app for Android-powered devices
http://sites.google.com/site/rezmobileapps/treking

-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


Re: [android-beginners] string to double

2010-05-25 Thread TreKing
On Tue, May 25, 2010 at 3:22 PM, Faust Nijhuis faustnijh...@gmail.comwrote:

 How do I transform a string with comma to a string with point.


By taking 2 seconds to look at the documentation for String. Your answer is
right there. Just try looking.

-
TreKing - Chicago transit tracking app for Android-powered devices
http://sites.google.com/site/rezmobileapps/treking

-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


Re: [android-beginners] ListView Selection Help

2010-05-24 Thread TreKing
On Mon, May 24, 2010 at 4:06 PM, chris_green1...@yahoo.com 
chris_green1...@yahoo.com wrote:

 Anyone know how to fix this?


Since you are using setListAdapter, I assume you're using a ListActivity,
which has onListItemClick().

-
TreKing - Chicago transit tracking app for Android-powered devices
http://sites.google.com/site/rezmobileapps/treking

-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


Re: [android-beginners] Get link on RSS feed from Android browser to my application

2010-05-22 Thread TreKing
On Thu, May 20, 2010 at 1:38 PM, Alex Zaharov zalksob...@gmail.com wrote:

 The question is how to insert this button or context menu item. :)
 Or maybe browser sends broadcast messages about any events. Can I subscribe
 on this messages?


If you're saying you want to insert custom buttons or context menus into the
default browser - you can't. It's a standalone app that you have no control
over.

Use a WebView.

-
TreKing - Chicago transit tracking app for Android-powered devices
http://sites.google.com/site/rezmobileapps/treking

-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


Re: [android-beginners] Re: Calculating distance between GPS position and way_point

2010-05-21 Thread TreKing
On Fri, May 21, 2010 at 7:25 AM, ckloch htc.kl...@hotmail.com wrote:

 I am importíng android.location.location and then trying the line float
 results [] = distanceBetween(lat_a1, lng_a1, lat_b1, lng_b1);


Well that doesn't make sense since it doesn't match the function
signature...


 My problem is that I get the error message: The method
 distanceBetween(double, double, double, double) is undefined for the type
 new LocationListener(){} and I don't know how to interprete it.


This means exactly what it says - that the method you're using,
distanceBetween, is not defined for the type for which you're trying to use
it.

You use it like this:
float[] results = new float[1]; // 1, 2 or 3 depending on what information
you want
Location.distanceBetween(lat1, lon1, lat2, lon2, results);
float distance = results[0];



 Furthermore, I will be very thankful is you can help me by reading
 the time, and timedifference between a number of readings, as I need
 the timedifference to estimate an average speed over a distance travelled.


I have no idea what you're asking.


 I understand all the input parameters, but what about the output float
 results[] Does it mean that I can write the line

 distanceBetween(double startLatitude, double startLongitude, double
 endLatitude, double endLongitude, float[] results);


See above.

-
TreKing - Chicago transit tracking app for Android-powered devices
http://sites.google.com/site/rezmobileapps/treking

-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


Re: [android-beginners] Calculating distance between GPS position and way_point

2010-05-20 Thread TreKing
On Thu, May 20, 2010 at 6:21 AM, ckloch htc.kl...@hotmail.com wrote:

 Please, let me know how I can solve this problem. I believe that there must
 be easier way to calculate this distance, but I have found any.


Try this:
http://developer.android.com/intl/fr/reference/android/location/Location.html#distanceBetween(double,
double, double, double, float[])

-
TreKing - Chicago transit tracking app for Android-powered devices
http://sites.google.com/site/rezmobileapps/treking

-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


Re: [android-beginners] radiobutton gruop

2010-05-19 Thread TreKing
On Wed, May 19, 2010 at 11:22 AM, Rc3375 rcobb3...@gmail.com wrote:

 My question is, how do you detect which button(1), button(2) or button(3)
 was selected by the user using the java switch statement?


Look at the documentation for RadioGroup. Specifically, these two:

 int 
getCheckedRadioButtonIdhttp://developer.android.com/reference/android/widget/RadioGroup.html#getCheckedRadioButtonId()
()

Returns the identifier of the selected radio button in this group.
 void 
setOnCheckedChangeListenerhttp://developer.android.com/reference/android/widget/RadioGroup.html#setOnCheckedChangeListener(android.widget.RadioGroup.OnCheckedChangeListener)
(RadioGroup.OnCheckedChangeListenerhttp://developer.android.com/reference/android/widget/RadioGroup.OnCheckedChangeListener.html
 listener)

Register a callback to be invoked when the checked radio button changes in
this group.
-
TreKing - Chicago transit tracking app for Android-powered devices
http://sites.google.com/site/rezmobileapps/treking

-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


Re: [android-beginners] Capturing all the Browser Events

2010-05-18 Thread TreKing
On Tue, May 18, 2010 at 10:56 AM, prajakta choudhari 
prajaktachoudh...@gmail.com wrote:

 Is this possible to do in SDK


I doubt it - and certainly hope not. Though you can probably do this with a
WebView embedded in your own app that you control.

-
TreKing - Chicago transit tracking app for Android-powered devices
http://sites.google.com/site/rezmobileapps/treking

-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


Re: [android-beginners] Re: Android Emulator - Eclipse cannot see it

2010-05-14 Thread TreKing
On Thu, May 13, 2010 at 9:29 PM, Kevin Brooks bear35...@gmail.com wrote:

 I have to shut down the IDE every time I run my application.


If you are having consistent issues where things just aren't working right,
I would just uninstall and re-install everything.

-
TreKing - Chicago transit tracking app for Android-powered devices
http://sites.google.com/site/rezmobileapps/treking

-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


Re: [android-beginners] Re: Android Emulator - Eclipse cannot see it

2010-05-13 Thread TreKing
On Wed, May 12, 2010 at 10:43 PM, Kevin Brooks bear35...@gmail.com wrote:

 Anyone have a clue what is happening?


In these cases, I usually close everything, run adb kill-server, and
restart.

-
TreKing - Chicago transit tracking app for Android-powered devices
http://sites.google.com/site/rezmobileapps/treking

-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


Re: [android-beginners] Re: The application has stopped unexpectedly. Please try again.

2010-05-13 Thread TreKing
On Thu, May 13, 2010 at 1:34 AM, T1000 t1...@zando.dyndns.org wrote:

 How to I run the emulator with a standard English keyboard? Help!


Home - Settings - Language  Keyboard - Locale.

-
TreKing - Chicago transit tracking app for Android-powered devices
http://sites.google.com/site/rezmobileapps/treking

-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


Re: [android-beginners] Maintaining the state when changing the orientation

2010-05-13 Thread TreKing
On Thu, May 13, 2010 at 3:32 AM, Kostya Vasilyev kmans...@gmail.com wrote:

 See here:


And here:
http://developer.android.com/intl/fr/resources/faq/commontasks.html#appstate
http://developer.android.com/intl/fr/resources/faq/commontasks.html#appstate
-
TreKing - Chicago transit tracking app for Android-powered devices
http://sites.google.com/site/rezmobileapps/treking

-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


Re: [android-beginners] Draw outside the onDraw() function

2010-05-13 Thread TreKing
On Thu, May 13, 2010 at 6:36 AM, Rahul Garg rahul.lnm...@gmail.com wrote:

 what should i do?


Can't you call invalidate or postInvalidate or something to trigger another
draw call?

-
TreKing - Chicago transit tracking app for Android-powered devices
http://sites.google.com/site/rezmobileapps/treking

-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


Re: [android-beginners] NEED help--working on twitter app want list click to be expanded and again shrinked on another click plz help

2010-05-13 Thread TreKing
On Thu, May 13, 2010 at 12:15 PM, vin vineet...@gmail.com wrote:

 hey are u people getting my posts or not ..?


Yup - but due to how many posts you threw together in a short period, the
amount of unformatted and irrelevant code, and your terrible grammar - I
don't think anyone is taking you seriously. No offense.

-
TreKing - Chicago transit tracking app for Android-powered devices
http://sites.google.com/site/rezmobileapps/treking

-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


Re: [android-beginners] App without Gui

2010-05-12 Thread TreKing
On Mon, May 10, 2010 at 2:28 AM, Idan idan.f...@gmail.com wrote:

 i have an app which i want to start another app and getting some result


What, EXACTLY, are you trying to do? Start another app written by you? Start
a third-party app?


 , now i wanna know if there is a way of making this app working without a
 GUI?


Possibly - depends one what exactly you're trying to do.


 i could use remote service, but i dont need to, since: i have
 more limitations of a service then a regular app (for example i cant
 have: startActivityWithResult...


What?


  and second, i earn all the AIDL model


What?


 any suggestions?


Clarify your post.

-
TreKing - Chicago transit tracking app for Android-powered devices
http://sites.google.com/site/rezmobileapps/treking

-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


Re: [android-beginners] The Android emulator runs too slowly.

2010-05-12 Thread TreKing
On Wed, May 12, 2010 at 2:42 AM, T1000 t1...@zando.dyndns.org wrote:

 It takes me five minutes to load and run Hello Android!


Just to be clear - you don't have to load up the emulator each time you run
your app. You should load it once (which is known to take quite some time)
and then leave it up as long as you're working on your project (or something
goes wrong with Eclipse / adb / DDMS , etc, forcing you to restart).

-
TreKing - Chicago transit tracking app for Android-powered devices
http://sites.google.com/site/rezmobileapps/treking

-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


Re: [android-beginners] The Android emulator runs too slowly.

2010-05-12 Thread TreKing
On Wed, May 12, 2010 at 10:44 AM, T1000 t1...@zando.dyndns.org wrote:

 How do I recover from a crash in the emulator without closing the emulator
 and rerunning my app in Eclipse?


Just re-run the app.

-
TreKing - Chicago transit tracking app for Android-powered devices
http://sites.google.com/site/rezmobileapps/treking

-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


Re: [android-beginners] The application has stopped unexpectedly. Please try again.

2010-05-12 Thread TreKing
On Wed, May 12, 2010 at 11:08 AM, T1000 t1...@zando.dyndns.org wrote:

 What am I doing wrong?


Print out the values of the strings just before you try to convert them,
then the value of what you get.
Why are you using Float to get a double value?

-
TreKing - Chicago transit tracking app for Android-powered devices
http://sites.google.com/site/rezmobileapps/treking

-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


Re: [android-beginners] The application has stopped unexpectedly. Please try again.

2010-05-12 Thread TreKing
On Wed, May 12, 2010 at 12:10 PM, T1000 t1...@zando.dyndns.org wrote:

 I can't print out the strings after I try to convert them using either of
 these two routines because it crashes.


Weirdness - have you tried putting a break point right before the
Double.parse(value) call and see the value of the string there? Don't do
trim() or any that Scanner stuff - it should not be necessary (assuming of
course the value is actually a double).

-
TreKing - Chicago transit tracking app for Android-powered devices
http://sites.google.com/site/rezmobileapps/treking

-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


Re: [android-beginners] Randomly generate sound from onClick and onShake events?

2010-05-11 Thread TreKing
On Mon, May 10, 2010 at 7:39 PM, Aaron Lee cyphasign...@gmail.com wrote:

 First off, what technique should I use to achieve this?


You have an array, yes? You know the length, right? So generate a random
number between 0 and length of array, and choose that time. That's it.


 ARRAY-RANDOM- STRING-PLAY?  RANDOM INT-PLAY?  RANDOM INT-STRING-PLAY?


I have no idea what this means.

-
TreKing - Chicago transit tracking app for Android-powered devices
http://sites.google.com/site/rezmobileapps/treking

-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


Re: [android-beginners] Re: Android Emulator - Eclipse cannot see it

2010-05-11 Thread TreKing
On Tue, May 11, 2010 at 10:26 AM, tiger unixep...@mailinator.com wrote:

 Yeah, I definitely unlocked it. As I said from the console messages
 in Eclipse, you can see it is stopped at the point where it is waiting for
 feedback from the emulator, but it is not getting it.


Instead of launching your app to trigger the emulator to start, launch the
Emulator from the AVD control window. Wait for it to boot. Unlock the screen
if necessary. Then try running your app, selecting the emulator instance as
your target. What happens then?

-
TreKing - Chicago transit tracking app for Android-powered devices
http://sites.google.com/site/rezmobileapps/treking

-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


Re: [android-beginners] Re: Changing button image based on user input.

2010-05-11 Thread TreKing
On Tue, May 11, 2010 at 11:59 AM, Tollas tolla...@gmail.com wrote:

 I know I'm heading in the right direction, I just can't seem to make it
 work!


How doesn't it work? What is the current behavior? What have you debugged so
far?
Sorry, but I, personally, am not going to dig through your unformatted code
to find the answer for you.

-
TreKing - Chicago transit tracking app for Android-powered devices
http://sites.google.com/site/rezmobileapps/treking

-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


Re: [android-beginners] Re: Android Emulator - Eclipse cannot see it

2010-05-11 Thread TreKing
On Tue, May 11, 2010 at 4:05 PM, tiger unixep...@mailinator.com wrote:

 This confirms what I have been saying - that Eclipse is not seeing or
 communicating with the running emulator after it starts it.


If you run DDMS, does that list the emulator as a target?

-
TreKing - Chicago transit tracking app for Android-powered devices
http://sites.google.com/site/rezmobileapps/treking

-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


Re: [android-beginners] Custom multiselect dialog

2010-05-10 Thread TreKing
On Mon, May 10, 2010 at 2:18 AM, skalluraya skallur...@gmail.com wrote:

 How can i go about it.


Try setting a custom adapter on the listview in the dialog.

-
TreKing - Chicago transit tracking app for Android-powered devices
http://sites.google.com/site/rezmobileapps/treking

-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


Re: [android-beginners] Android Emulator - Eclipse cannot see it

2010-05-10 Thread TreKing
On Mon, May 10, 2010 at 4:32 AM, tiger unixep...@mailinator.com wrote:

 Eclipse does not seem to see the emulator has fully booted up.


Please elaborate.


 I wait until it is fully booted up, the simulated SD card has been prepared
 etc., and I unlock the screen, but nothing happens.



What do you mean nothing happens? At that point nothing SHOULD happen
until you launch your app from Eclipse ...

-
TreKing - Chicago transit tracking app for Android-powered devices
http://sites.google.com/site/rezmobileapps/treking

-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


Re: [android-beginners] Tabbed UI

2010-05-06 Thread TreKing
On Wed, May 5, 2010 at 11:09 PM, Raul Martinez raul5...@gmail.com wrote:

 i really need help figuring the tab ui tutorial, i dont understand how to
 make the three activities


What, SPECIFICALLY, are you having trouble with?

-
TreKing - Chicago transit tracking app for Android-powered devices
http://sites.google.com/site/rezmobileapps/treking

-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


  1   2   3   >