In every Activity of the app that I am creating, the bottom 1/4 of the
screen is clipped, nothing will display in that region.

Any idea why that might happen?

The parent layout is set to fill parent.  A sample of the layout is
below.


<?xml version="1.0" encoding="utf-8"?>
<LinearLayout android:layout_width="fill_parent"
    android:orientation="vertical" xmlns:android="http://
schemas.android.com/apk/res/android"
android:layout_height="fill_parent">
    <ImageView android:layout_height="wrap_content"
android:src="@drawable/simpsonstextblack"
android:layout_width="fill_parent" android:id="@+id/TitleImage"
android:layout_gravity="center_horizontal"
android:paddingBottom="5dp"></ImageView>
    <RelativeLayout android:layout_height="wrap_content"
android:layout_width="fill_parent" android:id="@+id/RelativeLayout1"
android:padding="5dp">
        <Button android:text="Take the Simpsons Challenge"
android:gravity="center" android:clickable="true" android:id="@+id/
ChallengeButton" android:layout_width="fill_parent"
android:layout_height="50dp" android:textSize="20dp"
android:background="@drawable/buttonbackgroundblue"></Button>
        <TextView android:layout_width="fill_parent"
android:layout_below="@+id/ChallengeButton" android:layout_alignLeft="@
+id/ChallengeButton" android:id="@+id/spacer1"
android:layout_height="5dp"></TextView>
        <Button android:layout_width="fill_parent" android:text="Free
Play" android:clickable="true" android:id="@+id/FreePlayButton"
android:layout_height="50dp" android:textSize="20dp"
android:background="@drawable/buttonbackgroundblue"
android:layout_below="@+id/spacer1"></Button>
        <TextView android:layout_width="fill_parent" android:id="@+id/
spacer2" android:layout_below="@+id/FreePlayButton"
android:layout_alignLeft="@+id/FreePlayButton"
android:layout_height="5dp"></TextView>
        <Button android:layout_height="50dp" android:textSize="20dp"
android:id="@+id/HighScoreButton" android:background="@drawable/
buttonbackgroundblue" android:layout_width="fill_parent"
android:text="High Scores" android:layout_below="@+id/spacer2"></
Button>
        <TextView android:layout_width="fill_parent" android:id="@+id/
spacer3" android:layout_below="@+id/HighScoreButton"
android:layout_alignLeft="@+id/HighScoreButton"
android:layout_height="5dp"></TextView>
        <Button android:layout_height="50dp" android:textSize="20dp"
android:id="@+id/HelpButton" android:background="@drawable/
buttonbackgroundblue" android:layout_width="fill_parent"
android:text="Help" android:layout_below="@+id/spacer3"></Button>
    </RelativeLayout>
    <RelativeLayout android:layout_width="fill_parent" android:id="@
+id/RelativeLayout1" android:layout_height="200dp">
        <TextView android:id="@+id/textView1"
android:layout_width="fill_parent" android:layout_height="20dp"></
TextView>
        <TextView android:layout_below="@+id/textView1"
android:layout_height="wrap_content"
android:layout_width="fill_parent" android:textAppearance="?
android:attr/textAppearanceMedium" android:id="@+id/QuoteText"
android:text='"A woman is a lot like a refrigerator. Six feet tall,
300 pounds…it makes ice."'>
    </RelativeLayout>
</LinearLayout>

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