[android-beginners] Re: problem in coding

2008-10-13 Thread baba vali
hi how can we configure strings.xml is it that just by saving strings in string.xml it will be updated automaticallj in R.java Regards --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Beginners group. To post

[android-beginners] Re: problem in coding

2008-10-13 Thread baba vali
hi i have used IDE and ANDROID WIZARD but when i modify my string.xml i didnt find it is updated in R.java file and also i find error in the code with the updated fstring like R.string.repeating_scheduled cannot be resolved --~--~-~--~~~---~--~~ You received this

[android-beginners] sqlite create two tables onCreate...

2008-10-13 Thread atrus123
What I want to do is create more than one table during onCreate: public void onCreate(SQLiteDatabase db) { // TODO Auto-generated method stub db.execSQL(CREATE_TABLES); } where CREATE_TABLES is something like this: private static final String CREATE_TABLES = create table this

[android-beginners] Dot net framework compatible with andriod

2008-10-13 Thread Osiris
Is it possible to program in vb.net in android. Osiris --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Beginners group. To post to this group, send email to android-beginners@googlegroups.com To unsubscribe

[android-beginners] use ACTION_WEB_SEARCH

2008-10-13 Thread [EMAIL PROTECTED]
Hi, I want to launch map page in my application, so I create a intent as following: Intent i = new Intent(); i.setAction(Intent.ACTION_WEB_SEARCH); i.setData(Uri.parse(http://maps.google.com/;); startActivity(i); But I get an alert: The application Browser (process com.android.browser) has

[android-beginners] Re: Does Android have a bluetooth ?

2008-10-13 Thread Alex Feldman
Anyone have any idea of when to expect the new API update for a2dp support? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Beginners group. To post to this group, send email to

[android-beginners] Re: Dot net framework compatible with andriod

2008-10-13 Thread Mark Murphy
Osiris wrote: Is it possible to program in vb.net in android. On a server, yes. On the device, no. Android device programming is done in Java or languages that can run on a JVM like Android's Dalvik VM. -- Mark Murphy (a Commons Guy) http://commonsware.com Android Training on the Ranch! --

[android-beginners] Re: use ACTION_WEB_SEARCH

2008-10-13 Thread Mark Murphy
[EMAIL PROTECTED] wrote: I want to launch map page in my application, so I create a intent as following: Intent i = new Intent(); i.setAction(Intent.ACTION_WEB_SEARCH); i.setData(Uri.parse(http://maps.google.com/;); startActivity(i); But I get an alert: The application Browser

[android-beginners] Re: Error + Eclipse plugin + android sdk on Debian Lenny AMD64

2008-10-13 Thread chris
check to see what your permissions are set to in your SDK directory. the directories all had read, but all the files my user didn't have read access to. i changed that and everything is working fine. On Oct 5, 9:59 am, LoupBlanc2007 [EMAIL PROTECTED] wrote: I installed Eclipse pluginADT0.8.0,

[android-beginners] Setting Custom layout for ListView

2008-10-13 Thread vijay
ListActivity has a default layout and when i create a new custom layout like below, it gives an error. The application stopped unexpectedly. ?xml version=1.0 encoding=UTF-8? LinearLayout xmlns:android=http://schemas.android.com/apk/res/ android android:orientation=vertical

[android-beginners] Re: sqlite create two tables onCreate...

2008-10-13 Thread atrus123
nm... figured out what I was doing wrong. On Oct 13, 9:44 am, atrus123 [EMAIL PROTECTED] wrote: What I want to do is create more than one table during onCreate: public void onCreate(SQLiteDatabase db) { // TODO Auto-generated method stub db.execSQL(CREATE_TABLES); }

[android-beginners] Does Android support Zigbee?

2008-10-13 Thread Daffodils
Doest Android support Zigbee (802.15.4)? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Beginners group. To post to this group, send email to android-beginners@googlegroups.com To unsubscribe from this

[android-beginners] Re: R.layout.dialog_activity cannot be resolved

2008-10-13 Thread Imran
Hi Mushimi change setContentView(R.layout.dialog_activity); to setContentView(R.layout.main); On Oct 12, 9:21 pm, mushimi [EMAIL PROTECTED] wrote: Hi, I follow sample Dialog Activity and have one error as this message's title. Can someone help me to have a look? My