[android-developers] AndroidSavvy.com

2009-01-12 Thread Bob
tons of stuff for consumers/users of the G1 as well as Android developers. If you have suggestions for more content, I'd love to hear it! enjoy, Bob --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers

[android-developers] deploying same application twice different content

2009-03-10 Thread Bob
on a device. But now when I try to install a second version it says that the app is already installed, even if I refactor and change the name of the app. What is the proper way to do this? Thanks, Bob --~--~-~--~~~---~--~~ You received this message because you

[android-developers] Re: deploying same application twice different content

2009-03-10 Thread Bob
I think so. Do I do that by refactoring the name of the package in the package explorer in Eclipse? On Mar 10, 2:06 pm, Josh Dobbs joshdo...@gmail.com wrote: Have you tried changing the package name? On Tue, Mar 10, 2009 at 11:58 AM, Bob bshumsk...@yahoo.com wrote: Hi, How do I create

[android-developers] Re: deploying same application twice different content

2009-03-10 Thread Bob
to the content can I use SVN or some other system to update many of these logic-identical but package name different applications at once? Thanks Again, Bob On Mar 10, 5:40 pm, Romain Guy romain...@google.com wrote: All you need is change the package name in the AndroidManifest. On Tue, Mar 10, 2009

[android-developers] detecting paused state

2009-03-10 Thread Bob
Hi, How do I check what the state of my app is, ie whether it is main app taking the screen or paused and not visible? Thanks, Bob --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post

[android-developers] Re: detecting paused state

2009-03-10 Thread Bob
ok, so I need to have an instance variable whose state changes in these events? On Mar 10, 7:59 pm, Dianne Hackborn hack...@android.com wrote: Activity.onResume() and Activity.onPause() is the main way you are told of this. On Tue, Mar 10, 2009 at 5:50 PM, Bob bshumsk...@yahoo.com wrote

[android-developers] Re: detecting paused state

2009-03-10 Thread Bob
Great, thanks! On Mar 10, 8:27 pm, Dianne Hackborn hack...@android.com wrote: Yes if you want to check it later. On Tue, Mar 10, 2009 at 6:16 PM, Bob bshumsk...@yahoo.com wrote: ok, so I need to have an instance variable whose state changes in these events? On Mar 10, 7:59 pm

[android-developers] accessing raw resources in worker thread. I have been trying to use Context.getResources but this seems to create some type of handler error.

2009-03-12 Thread Bob
Hi, How do I access raw resource via the context --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from

[android-developers] raw resources in worker thread

2009-03-12 Thread Bob
Hi, How do I access raw resources in a worker thread? I have been trying to use Context.getResources but this seems to create some type of handler error. Thanks, Bob --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups

[android-developers] service start and ui hanging

2009-03-13 Thread Bob
); updateThread.start(); What am I doing wrong? Also, it seems like the cause of the eventual crash in the service/worker thread doesn't show up in LogCat. Thanks, Bob --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android

[android-developers] Re: service start and ui hanging

2009-03-13 Thread Bob
Thanks for your quick response. It doesn't access or modify any views. It accesses the context to read in some raw resources and writes to the sqllite database also via context. On Mar 13, 9:32 am, Streets Of Boston flyingdutc...@gmail.com wrote: Hi Bob, Your code snippet is not enough

[android-developers] Re: service start and ui hanging

2009-03-13 Thread Bob
all you need to know about why it crashed.  The stack crawl is in the log. On Fri, Mar 13, 2009 at 9:39 AM, Bob bshumsk...@yahoo.com wrote: Thanks for your quick response.  It doesn't access or modify any views.  It accesses the context to read in some raw resources and writes

[android-developers] Re: service start and ui hanging

2009-03-13 Thread Bob
to do, do it in a background thread.  All Service callbacks happen on the main thread. On Fri, Mar 13, 2009 at 11:16 AM, Bob bshumsk...@yahoo.com wrote: Thanks, I'll look more at the logs for crash issue.  But regardless of the crash, am I correct in thinking that if I call a service

[android-developers] Re: service start and ui hanging

2009-03-13 Thread Bob
the system to start the service.  The Service callbacks are still made on the main thread, as always. On Fri, Mar 13, 2009 at 12:22 PM, Bob bshumsk...@yahoo.com wrote: If you have lots of work to do, do it in a background thread. Thanks, I thought I running on a different thread by calling

[android-developers] Re: I must pay 25$ to distribute a FREEWARE on Android Market

2009-03-15 Thread Bob
have a legitimate app to upload vs. everyone uploading their first Hello World app because it's cool. Bob Rose AndroidSavvy.com On Mar 15, 12:26 pm, MrSnowflake mrsnowfl...@gmail.com wrote: Yeah, and not a $99 per app fee (*cough*Microsoft rip off store*cough*) On 15 mrt, 19:03, Romain Guy

[android-developers] detect screensize

2009-03-19 Thread Bob
Hi, How do I get the current screen resolution (width and height)? Thanks, Bob --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers

[android-developers] webview contentwidth

2009-03-19 Thread Bob
Hi, Is there anyway to get the measured width of a webview's rendered html. There is a getContentHeight method that gets the height but there doesn't seem to be a analogous method for widths. Thanks, Bob --~--~-~--~~~---~--~~ You received this message because you

[android-developers] Re: detect screensize

2009-03-19 Thread Bob
. On Thu, Mar 19, 2009 at 9:36 AM, Bob bshumsk...@yahoo.com wrote: Thanks, that seems to work. On Mar 19, 9:54 am, Pd lotusscr...@gmail.com wrote: this may work but I've not tested it  :-)         getWindow().getWindowManager().getDefaultDisplay().getWidth();         getWindow

[android-developers] Re: detect screensize

2009-03-19 Thread Bob
android:layout_height=fill_parent /LinearLayout On Mar 19, 1:10 pm, Romain Guy romain...@google.com wrote: You have to measure the widget before you can get its dimension. On Thu, Mar 19, 2009 at 11:08 AM, Bob bshumsk...@yahoo.com wrote: Thanks.  What is the proper method to use on the control

[android-developers] handset error log

2009-03-22 Thread Bob
Hi, Is there a way for me to get an error report from my phone (not emulator) about why it is force closing? Thanks, Bob --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group

[android-developers] contacting commenters?

2009-03-25 Thread Bob
Hi, Is there any way to contact someone who has asked a question in a comment about your app on the android marketplace? Thanks, Bob --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post

[android-developers] onDraw calling frequency

2009-04-03 Thread Bob
Hi, I have a log of logic in my onDraw but the result (ie screen output) changes infequently. Do I need to worry about wasting CPU cycles and battery with repeated identical calculations or will onDraw only be called when necessary? Thanks, Bob

[android-developers] Re: onDraw calling frequency

2009-04-03 Thread Bob
changes and then using onDraw to read from that bitmap or something so as not to repeatedly do the same thing? Thanks, Bob --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group

[android-developers] Re: onDraw calling frequency

2009-04-03 Thread Bob
If it's drawing logic, then it's fine :) There is a lot of logic in varying the Paints though. On Apr 3, 12:49 pm, Romain Guy romain...@google.com wrote: If it's drawing logic, then it's fine :) On Fri, Apr 3, 2009 at 10:48 AM, Bob bshumsk...@yahoo.com wrote: onDraw() should normally

[android-developers] override errors when migrating development computers

2009-04-04 Thread Bob
, onClickListener, onTouch, onSingleTap, onShowTap, onScroll, onSensorChanged saying that there is no superclass method for me to override. Any suggestions on what I am doing wrong? Thanks, Bob --~--~-~--~~~---~--~~ You received this message because you are subscribed

[android-developers] Bitmap from webview

2009-01-25 Thread Bob
Hi, I would like to get a bitmap of a webview control that I can then clip and manipulate. How do I use the getpicture method or another means to do this? Thanks, Bob --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups

[android-developers] getting bitmap from webview

2009-01-25 Thread Bob
Hi, How do I get a bitmap of a webview? I think I can use the capturePicture but how do I then convert that picture object to a bitmap that I can clip and manipulate? Thanks, Bob --~--~-~--~~~---~--~~ You received this message because you are subscribed

[android-developers] unzip

2009-01-25 Thread Bob
Hi, I am trying to unzip a standard zip file. I have copied a couple standard java unzip classes from web searches but each time it creates a JRE parsing error. Does anyone have ideas on what is wrong or how I can do differently? Thanks, Bob Error: # An unexpected error has been detected

[android-developers] Re: unzip

2009-01-25 Thread Bob
Thanks. I am running the android emulator on a windows bug. I think the error might have been due to having two main() entry points and have it resolved. On Jan 25, 3:56 pm, Mark Murphy mmur...@commonsware.com wrote: Bob wrote: Hi, I am trying to unzip a standard zip file.  I have copied

[android-developers] # special characters in webview

2009-01-27 Thread Bob
Hi, I am populating a webview with the loaddata option but special characters such as ' for quotation mark aren't showing up and end the display. What am I doing wrong? Thanks, Bob WebView wv; wv.loadData(toload, text/html, utf-8);); --~--~-~--~~~---~--~~ You

[android-developers] Re: # special characters in webview

2009-01-27 Thread Bob
Great. that seems to largely resolve it. Thanks! On Jan 27, 8:02 am, Mark Murphy mmur...@commonsware.com wrote: Bob wrote: Hi, I am populating a webview with the loaddata option but special characters such as ' for quotation mark aren't showing up and end the display.  What am I doing

[android-developers] centering in linearlayout

2009-01-27 Thread Bob
Hi, How do I place a TextView in the center of a horizontal LinearLayout? Thanks, Bob --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers

[android-developers] Re: centering in linearlayout

2009-01-27 Thread Bob
Figured it out: android:layout_gravity=center_horizontal On Jan 27, 6:58 pm, Bob bshumsk...@yahoo.com wrote: Hi, How do I place a TextView in the center of a horizontal LinearLayout? Thanks, Bob --~--~-~--~~~---~--~~ You received this message because you

[android-developers] button text change

2009-01-30 Thread Bob
Hi, How do I change the text on a button at run-time? This code doesn't appear to do anything, what am I doing wrong: Button button1=(Button)findViewById(R.id.button1); button1.setText(Change text); Thanks, Bob --~--~-~--~~~---~--~~ You received

[android-developers] Re: button text change

2009-01-31 Thread Bob
this on a certain click , then make sure its clickable... button1.setClickable(true); -Chander On Jan 31, 10:37 am, Bob bshumsk...@yahoo.com wrote: Hi, How do I change the text on a button at run-time?  This code doesn't appear to do anything, what am I doing wrong

[android-developers] recreating webview display with capture picture

2009-02-11 Thread Bob
Hi, Does anyone have an example on how to recreate a webview display by using the capturepicture() method? Can I save the resulting object in SQLLite and how do I put it on the canvas? Thanks, Bob --~--~-~--~~~---~--~~ You received this message because you

[android-developers] Yes/No Dialog

2009-02-22 Thread Bob
Hi, How do I display a simple yes/no or ok/cancel dialog with a title and react to the user choice? Thanks, Bob --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send

[android-developers] Re: Yes/No Dialog

2009-02-24 Thread Bob
.);                     }                 })                 .create();         }         return null;         } and call showDialog(DIALOG_YES_NO_MESSAGE); On Mon, Feb 23, 2009 at 11:56 AM, Bob bshumsk...@yahoo.com wrote: Hi, How do I display a simple yes/no or ok/cancel dialog with a title

[android-developers] Finance for Android - A Google Developer’s Note

2009-03-05 Thread Bob
I wrote up my experiences working on the new Finance app here: http://www.googleandblog.com/finance-for-android-google-developers-note/3827/ enjoy! Bob --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android

[android-developers] settings page for app design

2009-10-08 Thread Bob
Hi, Is anyone aware of an example or sample code that shows how to make a settings page (like what you get from hitting settings)? Many apps seem to have them but I'm not sure what type of list they are using. Thanks, Bob --~--~-~--~~~---~--~~ You received

[android-developers] Re: settings page for app design

2009-10-13 Thread Bob
Thanks this is very helpful. How do I then access the settings from a different activity within the app? The following code doesn't seem to work, should I use something different for where USER_PREFERENCES is? SharedPreferences userPrefFile = this.getSharedPreferences (USER_PREFERENCES,

[android-developers] Re: Google wave invitations...?

2009-10-18 Thread Bob
could you please send me one (yuan@gmail.com) invitation if still available? Thanks! :) On Oct 16, 11:41 am, Kenneth Adam Miller kennethadammil...@gmail.com wrote: Who wants to be in Google wave? I have 16 invitations --~--~-~--~~~---~--~~ You received this

[android-developers] Android SDK and AVD Manager

2009-11-02 Thread Bob
I just setup my development environment on a Windows XP VM and I'm having problems getting the Android SDK AVD Manager to retreive the available packages. The message under Sites, Packages, and Archives says Failed to fetch URL. When I attempt to retrieve the 'Available Packages', I get the

[android-developers] downgrade donut to cupcake?

2009-11-08 Thread Bob
Hi, Does anyone know how to change a build from donut back down to cupcake? I tried changing the release target minsdkversion back to 3 but it still would only launch in the donut rather than cupcake emulators and showed the Android 1.6 rather than Android 1.5. Thanks, Bob -- You received

[android-developers] clipboard copy paste

2009-08-04 Thread Bob
Hi, Is there a way to programmatically add text to the clipboard for copy/ paste functionality into another app. Thanks, Bob --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post

[android-developers] view.draw() at horizontal offset?

2009-08-13 Thread Bob
(4000, 300, Bitmap.Config.ARGB_); Canvas cv=new Canvas(image); view1.draw(cv) Thanks, Bob --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android

[android-developers] listview custom adapter highlighting

2009-08-15 Thread Bob
Hi, How do I customize the way that a listview behaves when it is highlighted (ie when the user presses it, the default is for it to be highlighted orange). Is this in the getView() method or somewhere else? Thanks, Bob --~--~-~--~~~---~--~~ You received

[android-developers] catching out of memory errors

2009-08-22 Thread Bob
Hi, I am getting an outofmemory error (java.lang.outofmememoryerror) from a bitmapfactory that doesn't seem to be caught despite the fact that it is in a try{ }catch block. Can I catch this error somehow or is it outofmemory inherently uncatchable? Thanks, Bob

[android-developers] Re: catching out of memory errors

2009-08-22 Thread Bob
Thanks for quick response. Is an OutOfMemoryError not a normal exception that will be caught by try{}catch(Exception ex){}? On Aug 22, 7:47 pm, Streets Of Boston flyingdutc...@gmail.com wrote: You can catch it. Just catch the OutOfMemoryError (or Throwable). On Aug 22, 7:45 pm, Bob bshumsk

[android-developers] Re: New to Programing and Android

2008-05-13 Thread Bob
environment; validate the running solution against the design; and document the finished solution. The ability to write code for a particular target environment is, really, a pretty small part of what you, as a beginning developer, needs to learn. Bob On May 12, 5:35 pm, tryingtolearn [EMAIL

[android-developers] Re: New SDK available - 0.9 SDK beta

2008-08-18 Thread Bob
Will we soon see updates to the issue tracking database (http:// code.google.com/p/android/issues/list)? I'd like to know if some of the issues critical to our application have been fixed. Bob On Aug 18, 2:01 pm, David McLaughlin (Android Advocate) [EMAIL PROTECTED] wrote: Fellow Android

[android-developers] Re: sqlite3?

2008-08-20 Thread Bob
I too wasted time trying to figure out why sqlite3 was not found using the Windows 0.9 Beta SDK. When's the next SDK release? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to this

[android-developers] Using the Emulator with a Proxy - 0.9 Beta SDK Windows Eclipse 3.4

2008-08-20 Thread Bob
I've tried to use the Emulator with a Proxy using the instructions here... http://code.google.com/android/reference/emulator.html#proxy but have had no success using either of the two options discussed in the reference. The 'Browser' application reports... Web page not available The Web page

[android-developers] Re: Where are the HTC dev phone 1 image package links?

2009-12-11 Thread Bob
Cool. It works! On Dec 9, 12:35 pm, Ryan Beesley ryan.bees...@swypeinc.com wrote: lbcoder posted this on one of the other groups: On Dec 7, 7:41 pm, lbcoder lbco...@gmail.com wrote: The page is just broken. The files are still there to download.

[android-developers] changing contents of apk and rezipping?

2009-12-15 Thread Bob
not contain AndroidManifest.xml when I try to install. Is there a way around this? Thanks, Bob -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from

[android-developers] Android GPS app stopped unexpectedly

2010-04-09 Thread bob
package com.wissen.android; import com.google.android.maps.GeoPoint; import com.google.android.maps.MapActivity; import com.google.android.maps.MapController; import com.google.android.maps.MapView; import android.content.Context; import android.location.Location; import

[android-developers] Re: Android GPS app stopped unexpectedly

2010-04-09 Thread bob
! Regards, Rogerio 2010/4/9 bob crcowboy...@gmail.com package com.wissen.android; import com.google.android.maps.GeoPoint; import com.google.android.maps.MapActivity; import com.google.android.maps.MapController; import com.google.android.maps.MapView; import

[android-developers] Re: Android GPS app stopped unexpectedly

2010-04-09 Thread bob
I have the google maps api installed, and have tried to run it on the emulator and an actual droid with the same result. Thanks for the suggestion though On Apr 9, 4:40 pm, Mark Murphy mmur...@commonsware.com wrote: bob wrote: Certainly. 04-09 20:58:13.199: ERROR/AndroidRuntime(2362

[android-developers] Re: Android GPS app stopped unexpectedly

2010-04-10 Thread bob
=android.permission.INTERNET/uses- permission uses-permission android:name=android.permission.ACCESS_COARSE_LOCATION/uses- permission uses-permission android:name=android.permission.ACCESS_FINE_LOCATION/uses- permission /manifest On Apr 9, 5:20 pm, ~ TreKing treking...@gmail.com wrote: On Fri, Apr 9, 2010 at 3:47 PM, bob

[android-developers] screen pixel size

2010-04-12 Thread Bob
this? Thanks, Bob -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to android-developers+unsubscr...@googlegroups.com For more options

[android-developers] Re: USB driver not working on Windows 7 64 bits

2010-09-27 Thread Bob
I'm having trouble too. I'm using Windows 7 64 bit and have an LG GT540. I've written my app, and it works on the virtual phone, now I want to test it on my phone, but I can't get windows to connect to it. -- You received this message because you are subscribed to the Google Groups Android

[android-developers] creating custom intent

2009-04-29 Thread Bob
it is in the manifest? Thanks, Bob In other activity,produces error: Intent i = new Intent(com.example.Intent1); startActivity(i); In Receiver Activity: In Manifest: receiver android:name=.TestBroadcastReceiver android:enabled=true intent-filter action android:name

[android-developers] Re: creating custom intent

2009-04-29 Thread Bob
this: activity android:name=.MyActivity android:label=@string/ app_name intent-filter action android:name=com.example.Intent1 / /intent-filter Is there something wrong with that used in conjunction with startactivity()? Thanks, Bob On Apr 29, 10:32 pm, Jeff

[android-developers] Re: creating custom intent

2009-04-30 Thread Bob
Thanks for your help. I believe I have resolved the problem and it was that I didn't have the line category android:name=android.intent.category.DEFAULT / following intent-filter action android:name=com.example.Intent1 / Thanks Again, Bob On Apr 30, 1:09 am, Jeff Sharkey jshar

[android-developers] Daemon errors while debugging

2009-05-19 Thread Bob
: 448 NativeStart.run() line: not available [native method] Thanks, Bob --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers

[android-developers] webview contentwidth

2009-05-20 Thread Bob
Hi, Is there anyway to get the measured width of a webview's rendered html. There is a getContentHeight method that gets the height but there doesn't seem to be a analogous method for widths. Thanks, Bob --~--~-~--~~~---~--~~ You received this message because you

[android-developers] Re: Daemon errors while debugging

2009-05-22 Thread Bob
Great, I think I needed to close a cursor On May 20, 3:03 pm, fadden fad...@android.com wrote: On May 19, 9:29 pm, Bob bshumsk...@yahoo.com wrote: When I debug I get dozens of these exceptions in a row.  They don't seem to effect the program flow but make debugging a nightmare.  Does

[android-developers] sensor_service breaking change in cupcake? getSystemService(Sensor_Service)

2009-05-22 Thread Bob
Hi, I have the following code in my app which seems to pause indefinitely when I run it in the cupcake emulator: SensorManager mSensorManager = (SensorManager) getSystemService (SENSOR_SERVICE); does anyone know how I should replace this in cupcake or if this is an emulator issue? Thanks, Bob

[android-developers] Re: sensor_service breaking change in cupcake? getSystemService(Sensor_Service)

2009-05-22 Thread Bob
Boy is that a relief. Thanks! On May 22, 4:21 pm, blindfold seeingwithso...@gmail.com wrote: It is only an emulator issue:http://code.google.com/p/android/issues/detail?id=2566 On May 22, 10:47 pm, Bob bshumsk...@yahoo.com wrote: Hi, I have the following code in my app which seems

[android-developers] Android opengl app

2011-01-04 Thread bob
I'm having trouble getting my Android opengl app to display a quad. Is there anything obviously wrong with this code? public void onDrawFrame(GL10 gl) { gl.glClear(GL10.GL_COLOR_BUFFER_BIT | GL10.GL_DEPTH_BUFFER_BIT); gl.glMatrixMode(GL10.GL_MODELVIEW); gl.glLoadIdentity(); float[] myverts =

[android-developers] Implementing networking in an android app

2010-11-16 Thread bob
Hello, I am just getting started in the world of android. I'm trying to understand which way to implement networking and a network queue in my application, there will be lots of comms for each activity including lots of thumbnail loading. I have read the articles at

[android-developers] How to close toast when application is closed/hidden?

2010-06-01 Thread BoB
Hey, This is probably a pretty easy question to answer but I couldn't find any answers on my own so: I'm writing a little app that uses GPS coordinates and I have a toast that pops up and displays my current GPS coordinates (and updates them as they change). It works fine but when I close the

[android-developers] resources as strings

2011-01-14 Thread bob
Can someone help me understand how to specify resources as strings? I came across this code with min3ds: IParser parser = Parser.createParser(Parser.Type.MAX_3DS, getResources(), min3d.sampleProject1:raw/monster_high, false); I am trying to figure out how to

[android-developers] exit strategy

2011-01-14 Thread bob
I made a slot machine game for Android a few weeks ago, and I forgot to include code to allow a user to quit the app. How do most Android apps allow the user to quit, and do they have a way to quit my slot machine even though I forgot to code it in? -- You received this message because you are

[android-developers] how to play video on Android?

2011-01-18 Thread bob
Can someone help me figure out how to play video on Android? I can't figure out how to refer to the 3gp resource that I added to the project. Here's what I've been trying: /* * Copyright (C) 2009 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the

[android-developers] error in my Android app

2011-01-20 Thread bob
I keep getting the following error in my Android app: Thread [1 main] (Suspended (exception RuntimeException)) ActivityThread.performLaunchActivity(ActivityThread $ActivityClientRecord, Intent) line: 1622 ActivityThread.handleLaunchActivity(ActivityThread $ActivityClientRecord,

[android-developers] Consumer closed input channel

2011-01-20 Thread bob
I'm trying to develop a UFO shooter game for Android, and I keep getting this error: 01-20 17:21:23.178: ERROR/InputDispatcher(61): channel '406be560 com.coolfone/com.coolfone.hmm (server)' ~ Consumer closed input channel or an error occurred. events=0x8 01-20 17:21:23.178:

[android-developers] convert a C++ game to Android

2011-01-21 Thread bob
What is the best way to convert a C++ game to Android? Should I port it to Java? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send

[android-developers] strange bug on Android

2011-01-25 Thread bob
I'm diagnosing a strange bug on Android. I noticed that if I insert these two lines: gl.glPushMatrix(); gl.glPopMatrix(); Things get scaled a little differently. Any ideas why? Shouldn't those two lines cancel one another out and do nothing noticeable? --

[android-developers] Cancelled?

2011-02-03 Thread bob
What does it mean when Google Checkout says an order was Cancelled? I think almost half of the orders people have made for my app say Cancelled, and I don't know exactly what happened. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post

[android-developers] converting to regular java

2011-02-05 Thread bob
How hard is it usually to convert an Android app to regular Java that will run on a PC? Is there an automatic way to do this so I can release my Android games for PC and Mac and Linux easily? -- You received this message because you are subscribed to the Google Groups Android Developers group.

[android-developers] opengl textures

2011-02-07 Thread bob
Do opengl textures on Android have to be a width and height that is a power of 2? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send

[android-developers] stale intent extras from notification?

2009-06-09 Thread Bob
extras as were in the first intent, not what was put in the second intent. Anyone know what I am doing wrong? Do I have to clear the intent somehow or destroy the activity? Thanks, Bob --~--~-~--~~~---~--~~ You received this message because you are subscribed

[android-developers] stale intent extras from notification?

2009-06-09 Thread Bob
extras as were in the first intent, not what was put in the second intent. Anyone know what I am doing wrong? Do I have to clear the intent somehow or destroy the activity? Thanks, Bob --~--~-~--~~~---~--~~ You received this message because you are subscribed

[android-developers] expandlistview user selection detection?

2009-06-13 Thread Bob
Hi, How do I handle the selection in an expandablelistview? I have tried using both the setOnItemClickListener and the setOnItemSelectedListener and neither seems to fire when I click either the parent or child level elements. Thanks, Bob SimpleExpandableListAdapter mAdapter = new

[android-developers] Re: expandlistview user selection detection?

2009-06-14 Thread Bob
Figured it out, use setOnChildClickListener On Jun 13, 2:27 pm, Bob bshumsk...@yahoo.com wrote: Hi, How do I handle the selection in an expandablelistview?  I have tried using both the setOnItemClickListener  and the setOnItemSelectedListener and neither seems to fire when I click either

[android-developers] The server could not process your apk. Try again.

2010-03-25 Thread Bob
apks that I have uploaded before and ones that work fine with adb push onto devices. Does anyone have any suggestions? Thanks, Bob -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers

[android-developers] Re: Android Developer Device Seeding Program - Updates?

2010-03-25 Thread Bob
It took about a month but I got mine yesterday. On Mar 25, 6:20 pm, Jeremy Logan jeremy.lo...@gmail.com wrote: Oh, I'm fine with patience... especially for free things :) I was just wanting to make sure I hadn't screwed something up since I hadn't heard anything since filling in the form.

[android-developers] Re: The server could not process your apk. Try again.

2010-03-26 Thread Bob
/ /manifest On Mar 26, 12:27 am, Bob bshumsk...@yahoo.com wrote: Hi, Has there been an upgrade to the market that changes the minimum requirements for an app?  I have taken a couple months off and now whenever Itryto upload an app, I get the unhelpful message

[android-developers] Connecting Splash Screen to GPS App

2010-04-02 Thread bob
I'm new to Android development and I'm working on writing a GPS app. I want to have a title/splash screen displayed when the app is first opened, and then after a few seconds display the map. I made this splash screen by following a tutorial and have it saved it a separate Eclipse project. So I

[android-developers] android emulator scaling

2011-03-24 Thread bob
I'm having an issue in which the android emulator does not scale the display on mac: http://i1190.photobucket.com/albums/z449/m75214/Screenshot2011-03-24at92703AM.png Anyone know how to make it scale the display to fill the whole phone screen? Thanks. -- You received this message because you

[android-developers] adding ads

2011-05-04 Thread bob
How do most people typically add ads to an Android app? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to

[android-developers] SwapBuffers Function

2011-05-08 Thread bob
Is there anything like the SwapBuffers Function when doing OpenGL programming on Android? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this

[android-developers] Re: facebook integration

2011-05-08 Thread bob
: No. You can try to look for a facebook library, but there's no built in Android support for it. Type in facebook android in google:https://developers.facebook.com/blog/post/385/ Kris On Sat, Apr 16, 2011 at 6:05 PM, bob b...@coolgroups.com wrote: Does Android support any kind

[android-developers] Re: facebook integration

2011-05-08 Thread bob
to look for a facebook library, but there's no built in Android support for it. Type in facebook android in google:https://developers.facebook.com/blog/post/385/ Kris On Sat, Apr 16, 2011 at 6:05 PM, bob b...@coolgroups.com wrote: Does Android support any kind of facebook

[android-developers] emulator too slow

2011-05-09 Thread bob
Is there any way to make the emulator faster? It pretty much runs slow as molasses on my Macbook. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from

[android-developers] 3d model loading

2011-05-10 Thread bob
Are there any good examples of loading a 3d model on Android? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to

[android-developers] cracked screen

2011-05-11 Thread bob
I saw this app called cracked screen that basically overlays a bitmap on the screen and makes it look cracked as a joke. Somehow the app continues to put the crack on the screen even as the user continues to use the phone. Anyone know how to do this? -- You received this message because you

[android-developers] good 2d physics engine

2011-05-11 Thread bob
Can anyone recommend a good 2d physics engine for Android? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to

[android-developers] Twitter support

2011-05-12 Thread bob
Is there an easy way to add Twitter support to an Android app? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to

  1   2   3   4   5   6   7   8   9   10   >