I've gone through the Notepad tutorials and thought I had a grasp of
the basics, but apparently not.  I'm trying to create a screen with a
TextView on top with a row of buttons beneath it, but only the
TextView is displaying.  The buttons are not.  What am I missing?

Here's my layout.xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/
android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
>
        <TextView  android:id="@+id/TopText"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:text="play area"
        />
        <LinearLayout
                android:orientation="horizontal"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
        >
                <Button android:id="@+id/btnPlay"
                        android:text="Play"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content" />
                <Button android:id="@+id/btnInfo"
                        android:text="Info"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content" />
                <Button android:id="@+id/btnSetup"
                        android:text="Setup"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content" />
        </LinearLayout>

</LinearLayout>

Thanks
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to