Thanks for taking the time to look at this and help me.

1. I'm not sure what you mean/how to "step through the debugger"

2. I figured you meant that my view was not defined

3.  Here is the XML layout:

I've tried something as simple as this:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/
android"
        android:id="@+id/owners_screen"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    >
        <TextView android:text="test"></TextView>
</LinearLayout>


Conversely something as complex (though I think not too complex) as
this:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/
android"
        android:id="@+id/owners_screen"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:background="@drawable/screen_bg"
    android:layout_alignParentBottom="false"
    android:layout_alignBottom="@id/nav_drawer_btn"
    >

    <ImageButton android:id="@+id/a123"
        android:layout_marginTop="15dip"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerHorizontal="true"
        android:src="@drawable/change_backgnd"
        android:background="@null" />

    <ImageButton android:id="@+id/a321"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerHorizontal="true"
        android:src="@drawable/change_accent"
        android:background="@null"
        android:padding="5dip"
        android:layout_below="@id/a123" />

</RelativeLayout>


-- 
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
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to