[android-beginners] Re: Missing/Hidden/Dissappearing Button problem

2010-06-05 Thread Tollas
Ok. Tried switching to RelativeLayout and I'm still having the same problem. On May 30, 2:31 am, Justin Anderson janderson@gmail.com wrote: Why are you using AbsoluteLayout? -- There are only 10 types of people in

Re: [android-beginners] Re: Missing/Hidden/Dissappearing Button problem

2010-06-05 Thread Justin Anderson
Man... I am stumped here. I have no idea what the problem could be. Just out of curiosity (I can't imagine this would be the cause of the problem), is there a reason that your image is 8 pixels larger than the size of your button?

[android-beginners] Persistent disconnected emulator.

2010-06-05 Thread Nara_L
Hi, I use Eclipse and the ADT for android development.Recently when I try running a project,I get the error: # ... New emulator found: emulator-5554 # ... Waiting for HOME ('android.process.acore') to be launched... . emulator-5554 disconnected! Cancelling '[project name] activity launch'!

Re: [android-beginners] Regarding enter key on virtual keyboard

2010-06-05 Thread eudokija
Set android:imeOptions=actionNext for username EditText and android:imeOptions=actionDone for password Check out http://developer.android.com/reference/android/widget/TextView.html#attr_android:imeOptionsfor further reference 2010/6/3 ameya dandekar ameya...@gmail.com Hi, I am currently

[android-beginners] Re: Missing/Hidden/Dissappearing Button problem

2010-06-05 Thread Tollas
I can't remember why. I tried changing the button size to 60x60 with the same results. On Jun 5, 4:06 am, Justin Anderson janderson@gmail.com wrote: Man... I am stumped here.  I have no idea what the problem could be.  Just out of curiosity (I can't imagine this would be the cause of the

[android-beginners] Re: Missing/Hidden/Dissappearing Button problem

2010-06-05 Thread Gubatron
Did you try passing the drawable on the Button XML? ... android:background=@drawable/attack_any / or you can only obtain the drawable at runtime? (dynamic drawable) On May 28, 1:43 pm, Tollas tolla...@gmail.com wrote: Button    android:id=@+id/attack_ability_button    

[android-beginners] Re: Missing/Hidden/Dissappearing Button problem

2010-06-05 Thread Tollas
Yes, I have tried that. Same result. I've also tried making it an ImageButton and ImageView with the same result. On Jun 5, 3:48 pm, Gubatron gubat...@gmail.com wrote: Did you try passing the drawable on the Button XML? ... android:background=@drawable/attack_any / or you can only obtain the

[android-beginners] Database version is zero on initial install

2010-06-05 Thread Mahesh Dixit
I have released an app (World Time) with initial database. Now i want to update the app with a database upgrade. I have put in the upgrade code in OnUpgrade() and checking for the newVersion. But it was not being called in my local testing... So i put in the debug statement to get the database

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

2010-06-05 Thread james pruett
Mark, et al Thanks for that. Perhaps not the best way, but I am still trying to get the Intent-Method to work. Aside: In experimenting, I can receive android.intent.action.PHONE_STATE (but not my broadcast). The app sends the Intent, but the widget never shows Log.d() in

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

2010-06-05 Thread james pruett
oops. last email missing this code.--- public class MyIntentReceiver extends BroadcastReceiver { public void onUpdate(Context context, AppWidgetManager appWidgetManager, int[] appWidgetIds) { Log.d(TAG,MyIntentReceiver: onUpdate()); } @Override public