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

2010-05-30 Thread Justin Anderson
Why are you using AbsoluteLayout? -- There are only 10 types of people in the world... Those who know binary and those who don't. -- On Sat, May 29,

[android-beginners] اخر اصدار من العم لاق 5.19 Internet Download Manager

2010-05-30 Thread soso essa
بانفراد تام النجم أحمد حلمى فى فيلمه الجديد عسل أسود بنسخة روعـة مجموعة افلام محمد سعد كاملة نسخة دى فى دى ريب ( Dvd ) http://www.agd3as7ab.com/vb/showthread.php?t=10342 حصريا فيلم مهمه صعبه نسخه DvdRip بمساحه 222 ميجا http://www.agd3as7ab.com/vb/showthread.php?t=2617 بانفراد تام النجم أحمد

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

2010-05-30 Thread cellurl
Can an app not be full-screen? E.g. can I make a postage size app? I want to show the speed limit while you drive. It has to update a lot... It would look best in a postage size app, so other apps could show thru around the side... Widgets don't update enough, so I can't go the widget route. I

[android-beginners] Printing keyCode

2010-05-30 Thread Mauricio
What is the best way to print the int associated with each key I pressed? I tried something like this: public boolean onKeyDown(int keyCode, KeyEvent event) { super.onKeyDown(keyCode, event); switch (keyCode) { default : // Something might

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

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

2010-05-30 Thread Brian Victor
TreKing wrote: --001485f9217eb9364e0487d557cc Content-Type: text/plain; charset=ISO-8859-1 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

[android-beginners] Re: Printing keyCode

2010-05-30 Thread Mauricio
This is how I ended up solving it: currentRankText.setText(Integer.toString(keyCode)); Is that a good solution or I am opening myself to trouble? On May 30, 4:04 pm, Mauricio raubvo...@gmail.com wrote: What is the best way to print the int associated with each key I pressed? I tried something