Re: [android-beginners] My first post -- ArrayAdapter question

2010-06-12 Thread Yuvi
The textViewResourceId is actually the id of a layout (as it says on the docs: "The resource ID for a layout file containing a TextView to use when instantiating views."). So you should have a layout with a single TextView and it should work. On Sat, Jun 12, 2010 at 7:00 AM, appsgrrl wrote: > H

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

2010-05-31 Thread Yuvi
To update you widget faster than every 30 minutes instead of using updatePeriodMillis you can use the AlarmManager, which will fire your BroadcastReceiver every X ms. YuviDroid On Tue, Jun 1, 2010 at 3:33 AM, james pruett wrote: > Are you saying widgets can update faster than 30minutes? Pollin

Re: [android-beginners] How to get reference of (SQLiteDatabase) to use android contact database

2010-02-21 Thread Yuvi
Take a look here: http://developer.android.com/intl/fr/guide/topics/providers/content-providers.html On Sat, Feb 20, 2010 at 11:59 PM, Walt Armour wrote: > I'm pretty sure that is not the desired access method. You should probably > use the contacts ContentProvider. > > In general you cannot ac

Re: [android-beginners] Re: How to upload HelloAndroid.apk directly to HTC Hero

2010-01-14 Thread Yuvi
Or you can simply run the HelloAndroid project directly from Eclipse ("Debug as..", or "Run as.."). 2010/1/14 Rogério de Souza Moraes > Use adb to install it for you! > Connect your phone to your computer. Execute the command bellow to list the > devices you have connected to your computer: > >

Re: [android-beginners] Re: Eclipse Debugger

2010-01-14 Thread Yuvi
s problems...instead, with the emulator you might try using different sdk versions. (although I don't know if it might help...). Yuvi On Thu, Jan 14, 2010 at 12:57 PM, Lyndon wrote: > Hi > > Thanks for your help XCaf. > > The problem was intermittent so I am not sure if the

Re: [android-beginners] Need info on how to add the radio buttons dynamically

2010-01-14 Thread Yuvi
width="wrap_content" android:layout_height="wrap_content"> Hope it helps! Yuvi On Thu, Jan 14, 2010 at 2:25 PM, TreKing wrote: > Have you looked at RadioGroup in the documentation? > > > -