[android-developers] What method gets called when a fatal exception occurs

2012-07-29 Thread Jim Morris
This seems to be the simplest of questions, but I have not been able to find a suitable answer on Google or this forum. I am surprised to find that Android apparently does not call onDestroy, onStop, or onPause after a fatal exception occurs (e. g. a null pointer fatal exception). I have put the f

[android-developers] Issue 32545: Android dialog asks for pin code to pair during connect to socket, but device was already paired

2012-06-07 Thread Jim Morris
I have submitted an Android bug report: Issue 32545:Android dialog asks for pin code to pair during connect to socket, but device was already paired This is a VERY serious problem for my app that is ready to go to market. I have no workaround. Apparently nobody at Google has even looked at my

[android-developers] Re: Why can't someone at Google answer this question????????????????????????????????????????????????????????????

2012-05-31 Thread Jim Morris
hanks and Regards, > Kumar Bibek* > *http://techdroid.kbeanie.comhttp://www.kbeanie.com* > > > > > > > > On Fri, Jun 1, 2012 at 11:53 AM, Jim Morris wrote: > > There is nobody to talk to at Google > > > I thought Google Android peopl

[android-developers] Why can't someone at Google answer this question????????????????????????????????????????????????????????????

2012-05-31 Thread Jim Morris
There is nobody to talk to at Google I thought Google Android people are supposed to be watching this forum! Somebody in Poland responded to ask for code, I sent it and then nothing1 How are we suppo

[android-developers] pairing problem, I believe this to be a bug in Android 4.0.3

2012-05-14 Thread Jim Morris
I have developed an Android app that communicates with a Blue Bamboo Bluetooth printer. I have no trouble communicating with the printer on a galaxy P-6210 (Android 3.2). I purchased a P-3113 (Android 4.0.3). When my app runs on the P-3113, I get the following problem. When the P-3113 is trying to

[android-developers] Errors running builder 'Java Builder'

2012-02-17 Thread Jim Morris
Every time I open Eclipse, I get a message about a null pointer exception. Everything seems to work okay, but I fear someday it might cause me problems. I have seen postings about this, but I have never seen a resolution. I am running Eclipse 3.7.1. I have not done anything non-standard.

[android-developers] Strange problem with TableLayout and TextView

2012-01-23 Thread Jim Morris
When I run the code below with Button t = DynamicLayout.CreateButton(this, id++, 0x /* text color */, 20 /* text size */, "Button", Gravity.CENTER, res.getDrawable(R.drawable.spot_button), true); and // TextView t = DynamicLayout.CreateTextView(this, id++, 20 /* text size */, 0xf

[android-developers] Re: Cannot get text to appear when created dynamically

2012-01-16 Thread Jim Morris
, invisible. Once I changed the color to 0x, the text showed up fine. Thanks for your reply. On Jan 16, 6:18 pm, TreKing wrote: > On Sun, Jan 15, 2012 at 11:51 PM, Jim Morris wrote: > > I can get the two buttons to appear on the android emulator, but the text > >

[android-developers] Cannot get text to appear when created dynamically

2012-01-16 Thread Jim Morris
I am trying to create an activity UI by setting buttons and text dynamically. Just to get started I have dynamically created a ScrollView that contains a LinearLayout which contains a TextView and two Buttons. Everything is created dynamically. There is no layout file for this activity. I can get t