[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] 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" > Regards --~--~-~--~~~---~--~-

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

2008-10-13 Thread Alex Feldman
Anyone know when to expect the update? On Oct 9, 12:39 am, Robert <[EMAIL PROTECTED]> wrote: > Yes, but not A2DP Yet, apparently with an update is what I read in a > press release last week > On Oct 8, 9:28 pm, "Fahad Al-Faisal" <[EMAIL PROTECTED]> wrote: > > > Dear Android users, > > I have a qu

[android-beginners] Re: Android Developer Challenge II

2008-10-13 Thread Jake Maui
Unless I'm mistaken, I think that was the first one. It's my understanding that the 2nd one hasn't been announced yet. On Sun, Oct 12, 2008 at 3:48 AM, snguyen <[EMAIL PROTECTED]> wrote: > > Anyone knows when Android Developer Challenge II starts? According to > this: > > http://www.hollandtrad

[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@googlegroup

[android-beginners] Hai

2008-10-13 Thread saran
Can u tell me how to run application in background ?and Where i can find the logfiles.I am able to see what content in logfile by using logcat.But i want to know where these files are get stored?.Help me to know --~--~-~--~~~---~--~~ You received this message becau

[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 Brow

[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". http://schemas.android.com/apk/res/ android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fil

[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 grou

[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 dialog