Hi, Please find the attached xml file. I am using eclipse and tried to build the project through eclipes only.
Thanks and Regrads, Ashwani On 2/1/09, Kevin J. Brooks <[email protected]> wrote: > > > This fixed my problem. Try building your project. > > On Fri, 2009-01-30 at 07:57 -0500, Mark Murphy wrote: > > Ashwani Rao wrote: > > > HI, > > > > > > I have created xml file for UI. > > > I later added identifiers (@+/id) to few elements but the R.java file > > > is not getting updated. > > > > There are many possible causes for this. Can you post the layout XML > file? > > > > > > > --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Android Beginners" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-beginners?hl=en -~----------~----~----~----~------~----~------~--~---
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent" android:layout_gravity="left" android:background="@drawable/background"> <Button id="@+id/startgame" android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="New Match" android:layout_gravity="left" /> <Button id="@+id/resumegame" android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="Resume Match" android:layout_gravity="left" /> <Button android:id="@+id/demonstration" android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="Demo Match" android:layout_gravity="left" /> <Button android:id="@+id/instructions" android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="Instructions" android:layout_gravity="left" /> </LinearLayout>

