I am trying to put three controls in my layout but only the Edit control displays. I don't really need to access any of them except to respond to the button. I thought I didn't need the ID but I put it in just to see if it would cause them to display. Can anyone spot what I am doing wrong?
<?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:background="@drawable/sheik5" > <EditText android:id="@+id/edit" android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="" android:layout_marginTop="200dip" /> <TextView android:id="@+id/text" android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="Enter your question to The Sheik" android:layout_marginTop="275dip" /> <Button android:id ="@+id/button1" android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="Ask Question" android:layout_marginTop="325dip" /> </LinearLayout> --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---

