[android-developers] Re: Application Device Orientation Change 2.1, 2.2 versus 2.3 and up

2011-08-16 Thread KG
Thanks! On Aug 11, 5:39 am, Mark Murphy mmur...@commonsware.com wrote: On Wed, Aug 10, 2011 at 5:49 PM, Wolf rjgoeh...@sbcglobal.net wrote: My application works fine using API 7 and API 8 for changing device orientation andrevertingback with thescreenand all state variables.

[android-developers] TabHost not working in Froyo

2010-12-22 Thread KG
Hi Everyone, I have a TabHost in my app that works on my test device running Android 2.1 (and all previous versions via the emulator). However, the tabs do not display when Running on Android 2.2 (Froyo) or later. All there is is the content of the first tab and a blank spot where the tabs

[android-developers] Re: TabHost not working in Froyo

2010-12-22 Thread KG
Shameless self bump On Dec 22, 12:44 am, KG kevinconca...@gmail.com wrote: Hi Everyone, I have a TabHost in my app that works on my test device running Android 2.1 (and all previous versions via the emulator).  However, the tabs do not display when Running on Android 2.2 (Froyo) or later

[android-developers] Re: TabHost not working in Froyo

2010-12-22 Thread KG
help others too. On Dec 22, 12:02 pm, KG kevinconca...@gmail.com wrote: Shameless self bump On Dec 22, 12:44 am, KG kevinconca...@gmail.com wrote: Hi Everyone, I have a TabHost in my app that works on my test device running Android 2.1 (and all previous versions via the emulator

[android-developers] Choose Camera or Gallery Activity

2010-12-14 Thread KG
Hi Everyone, I'm trying to get Android to create the default Choose Activity dialog with the options of the built-in Camera application and the built-in Gallery application. However, I can't seem to figure out how to do it. I was trying to use ACTION_PICK_ACTIVITY but that wasn't working

[android-developers] Re: Choose Camera or Gallery Activity

2010-12-14 Thread KG
Thanks for the quick reply. That's Plan B. I was hoping I could be clever/lazy about it. I'll probably have to do it that way though. On Dec 14, 7:19 pm, Jake Basile jakerbas...@gmail.com wrote: I don't think you can do this with createChooser. You should be able to roll your own though,

[android-developers] Ampersand in String Array

2010-09-16 Thread KG
Hi Everyone, I've looked around for how to use an ampersand ( '' ) in an item for a string-array but can't seem to find it. I feel silly for having to ask for something this simple, but does anyone know how to escape it? -- You received this message because you are subscribed to the Google

[android-developers] Re: Ampersand in String Array

2010-09-16 Thread KG
Yeah I do, thanks a ton. On Sep 16, 2:35 am, Frank Weiss fewe...@gmail.com wrote: I suppose you mean in XML. The answer is amp;. On Sep 16, 2010 1:59 AM, KG kevinconca...@gmail.com wrote: Hi Everyone, I've looked around for how to use an ampersand ( '' ) in an item for a string-array

[android-developers] Re: User request refund 20 days after purchase

2010-08-24 Thread KG
Change your email address. On Aug 23, 11:11 pm, Federico Paolinelli fedep...@gmail.com wrote: I just got an email from an user that says that she want me to refund her (0.99 eur) because my app causes her nexus one to lock up. Now, apart from the curiosity of find out the cause of this lock

[android-developers] Re: Why has my app disappeared from the market? Has this happened to anyone before?

2010-08-20 Thread KG
Mine did too. However, the market is acting up so I'm guessing it has to do with that. On Aug 20, 10:46 pm, Greg Siano gregmsi...@gmail.com wrote: My app is a legitimate app, it isn't one of those sexy wallpaper, etc. apps.  Its been on the store for a while.  I have a free version with ads

[android-developers] Re: App download too less

2010-08-15 Thread KG
Sorry to say it, but if you're not getting downloads it means nobody wants your app. All you can do is release it, maybe market it, and then hope to whoever you pray to that it takes off. Good luck :D On Aug 14, 11:10 pm, HIRAK hirak1...@gmail.com wrote: Yes, you are absolutely right and I am

[android-developers] onActivityResult and the Settings Menu

2010-08-13 Thread KG
Hi Everyone, My app requires a network connection so if they don't have one enabled I prompt them to start it. I do this by calling the Wireless Network settings Activity as such: startActivityForResult(new Intent(android.provider.Settings.ACTION_WIRELESS_SETTINGS), NETWORK_RESULT); However,

[android-developers] Re: onActivityResult and the Settings Menu

2010-08-13 Thread KG
subsystem if not already enabled. This requires a special permission. Look up WifiManager.setWifiEnabled(). After enabling Wifi, you can watch broadcast actions defined in WifiManager or ConnectivityManager to know when a connection is established. -- Kostya 13.08.2010 22:02, KG пишет: Hi

[android-developers] Detect Wifi Enabled/Disabled

2010-08-12 Thread KG
Hi Everyone, This seems like a common issue developers have yet I couldn't find anything on it (searched through the archives in this mailing list and Google searches). Maybe I just fail at research, but anyway.. My app requires a network connection. If it is disabled I'd like to notify users

[android-developers] Re: Detect Wifi Enabled/Disabled

2010-08-12 Thread KG
Thank you very much, this is what I needed. On Aug 12, 3:20 pm, Kostya Vasilyev kmans...@gmail.com wrote: Look up WifiManager and its broadcast action definitions. -- Kostya Vasilyev --http://kmansoft.wordpress.com 13.08.2010 2:10 пользователь KG kevinconca...@gmail.com написал: Hi

[android-developers] Image Upload via HTTP POST/Google App Engine

2010-08-01 Thread KG
Hi, I'm trying to integrate Google App Engine with an Android app I've built but am having trouble with image processing. In the Android app, I convert the image into a byte array and send it to App Engine via HTTP POST to be put in a Blob. However, even after searching through all the examples

[android-developers] LayoutInflator Error on ImageView

2010-07-28 Thread KG
Hi Everyone, I'm trying to inflate a custom layout from XML but there is an error in an ImageView. Here is the custom component: RelativeLayout xmlns:android=http://schemas.android.com/apk/res/android; android:layout_height=wrap_content android:layout_width=wrap_content

[android-developers] Re: LayoutInflator Error on ImageView

2010-07-28 Thread KG
I knew that much. Now what do you think is causing it? That resource is a PNG in res/drawable-nodpi. On Jul 28, 4:41 pm, Mark Murphy mmur...@commonsware.com wrote: On Wed, Jul 28, 2010 at 7:17 PM, KG kevinconca...@gmail.com wrote: 07-28 23:15:48.662: ERROR/AndroidRuntime(3797): Caused

[android-developers] Re: LayoutInflator Error on ImageView

2010-07-28 Thread KG
at 12:00 AM, KG kevinconca...@gmail.com wrote: I knew that much. Sorry -- you didn't really indicate that in your original post.  Now what do you think is causing it?  That resource is a PNG in res/drawable-nodpi. Off the top of my head, I have no idea. Somehow, it is thinking that you're

[android-developers] Query Google Maps

2010-07-26 Thread KG
Hi Everyone, I'd like to make an app that requires access to all (or many) search results of a maps query. For example, given the query http://www.google.com/maps?q=hotelmrt=ypradius=1sll=32.503478,-84.948322 the app would have the names/locations of the 49 results. Does anyone have any ideas

[android-developers] Re: Query Google Maps

2010-07-26 Thread KG
Could you give me some more details on how to get the page and parse the results? I don't really understand what method I would use to get the page and then crawl through it to get each result. On Jul 26, 6:09 am, TreKing treking...@gmail.com wrote: On Mon, Jul 26, 2010 at 1:55 AM, KG

[android-developers] Re: Query Google Maps

2010-07-26 Thread KG
Is there a new way? On Jul 26, 8:26 am, JP joachim.pfeif...@gmail.com wrote: On Jul 25, 11:55 pm, KG kevinconca...@gmail.com wrote: I'd like to make an app that requires access to all (or many) search results of a maps query. This used to be part of the googlenav package, back when M3

[android-developers] Re: Query Google Maps

2010-07-26 Thread KG
Any other ideas? On Jul 25, 11:55 pm, KG kevinconca...@gmail.com wrote: Hi Everyone, I'd like to make an app that requires access to all (or many) search results of a maps query. For example, given the query http://www.google.com/maps?q=hotelmrt=ypradius=1sll=32.503478,-84 the app

[android-developers] Re: Query Google Maps

2010-07-26 Thread KG
Sorry about that.. little overzealous . Anyway, thanks for the reply, that makes a lot more sense now. On Jul 26, 1:25 pm, TreKing treking...@gmail.com wrote: On Mon, Jul 26, 2010 at 1:18 PM, KG kevinconca...@gmail.com wrote: Could you give me some more details on how to get the page

[android-developers] Choosing an Image

2010-07-23 Thread KG
Hi Everyone, I'm trying to allow the user to choose an image to load into my app using the default image browser on the phone. Here is what I have so far: Intent findImageIntent = new Intent(Intent.ACTION_GET_CONTENT); findImageIntent.setType(image/*);

[android-developers] Re: Choosing an Image

2010-07-23 Thread KG
! Trackmaster - Motorsports Lap Timer Dynomaster - Performance Dyno On Jul 23, 4:44 pm, KG kevinconca...@gmail.com wrote: Hi Everyone, I'm trying to allow the user to choose an image to load into my app using the default image browser on the phone. Here is what I have so far: Intent

[android-developers] Re: Choosing an Image

2010-07-23 Thread KG
! Trackmaster - Motorsports Lap Timer Dynomaster - Performance Dyno On Jul 23, 4:44 pm, KG kevinconca...@gmail.com wrote: Hi Everyone, I'm trying to allow the user to choose an image to load into my app using the default image browser on the phone. Here is what I have so far: Intent

[android-developers] Re: Choosing an Image

2010-07-23 Thread KG
Never mind, I just realized that -1 is the correct value I want On Jul 23, 6:02 pm, KG kevinconca...@gmail.com wrote: That gets me the Uri but still returns -1 as a resultCode.  Do you have any idea why? Also, I need to be able to take a picture via the Camera app.  I can't test

[android-developers] Re: Updates from a Web Server

2010-07-22 Thread KG
://;); url.openStream()  //process the stream Jeff Visit Trackaroo.com! Trackmaster - Motorsports Lap Timer Dynomaster - Performance Dyno On Jul 21, 2:22 pm, KG kevinconca...@gmail.com wrote: Hi Everyone, I want to make a background process/service which will listen for updates

[android-developers] Re: Updates from a Web Server

2010-07-22 Thread KG
That was another major concern, how much will this suck the battery life? Also, do you know when C2DM is going to be released? On Jul 22, 1:39 pm, Maps.Huge.Info (Maps API Guru) cor...@gmail.com wrote: If you can wait until Froyo becomes commonplace, the Android Cloud to Device Messaging

[android-developers] Re: Updates from a Web Server

2010-07-22 Thread KG
: On Thu, Jul 22, 2010 at 4:18 PM, KG kevinconca...@gmail.com wrote: That was another major concern, how much will this suck the battery life? Depend how frequently you poll. Give the user the option to set the interval they want, don't try to have a never-ending background service.  Also, do

[android-developers] Updates from a Web Server

2010-07-21 Thread KG
Hi Everyone, I want to make a background process/service which will listen for updates from a web server and then notify the user of those updates. I've done some research into several approaches but can't decide which one is simplest/best. Anyone have any suggestions? Thanks, KG -- You

[android-developers] Re: Adb remount fails on Android 1.5

2009-05-14 Thread KG
I have figured out a way to do this... First run adb root this will give you root access to G1's file system, then you can execute commands like adb push, adb pull etc --kartic On May 13, 9:41 pm, Kartic karti...@gmail.com wrote: Hi All, I have upgraded my phone's images to Android 1.5