尽管有fill_parent,父线性布局不占用整个屏幕

时间:2012-03-15 19:13:55

标签: android android-layout android-linearlayout

我现在有一个奇怪的问题,有一个父线性布局,我把它的高度设置为fill_parent但它似乎打算包装内容,更令我困惑的是,在图形布局视图中它出现了我希望它看起来的方式,但它仍然没有在模拟器中做它应该做的事情?

这是我的代码:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@color/title_color_dark_transparent" >

<LinearLayout

    android:layout_width="fill_parent"
    android:layout_height="fill_parent" 
    android:orientation="vertical"
    >

    <LinearLayout

        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_gravity="center_vertical|center_horizontal|center"
        android:layout_marginLeft="8dp"
        android:layout_marginRight="8dp"
        android:layout_marginTop="5dp"
        android:orientation="vertical"
        android:paddingTop="5dp" >


        <EditText
            android:id="@+id/menutweetedittext"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:background="@drawable/edit_text"
            android:gravity="top"
            android:hint="@string/edittext_hint"
            android:inputType="textCapSentences|textMultiLine|textAutoCorrect|textAutoComplete"
            android:lines="4"
            android:textAppearance="@style/TextAppearance.EditText" />

        <LinearLayout
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_marginTop="5dp"
            android:gravity="right"
            android:orientation="horizontal" >

            <TextView
                android:id="@+id/menucharactersremaining"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="@string/characters"
                android:textColor="#FFFFFF"
                android:textSize="20dp" />

            <Button
                android:id="@+id/menuposttweetbutton"
                style="@style/TextAppearance.Button"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginLeft="2dp"
                android:background="@drawable/button_background"
                android:onClick="posttweetbuttonClicked"
                android:text="@string/postbuttonstext"
                android:textSize="15dp" />
        </LinearLayout>

        <LinearLayout
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_gravity="center"
            android:layout_marginTop="8dp"
            android:orientation="vertical" >
        </LinearLayout>
    </LinearLayout>

    <com.google.ads.AdView
        android:id="@+id/menuadView2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        ads:adSize="BANNER"
        ads:adUnitId="a14f5be094d0328"
        ads:loadAdOnCreate="true" />
</LinearLayout>

1 个答案:

答案 0 :(得分:0)

我尝试简化你的布局。我抛弃了你所有的造型,但也许对象都在正确的位置。这是你在找什么?

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@android:color/darker_gray" >

<EditText
    android:id="@+id/menutweetedittext"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_alignParentTop="true"
    android:gravity="top"
    android:hint="Hint"
    android:inputType="textCapSentences|textMultiLine|textAutoCorrect|textAutoComplete"
    android:lines="4"
    android:textAppearance="@android:style/TextAppearance.Medium" />

<Button
    android:id="@+id/menuposttweetbutton"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentRight="true"
    android:layout_below="@+id/menutweetedittext"
    android:layout_marginLeft="8dp"
    android:layout_marginTop="8dp"
    android:onClick="posttweetbuttonClicked"
    android:text="Tweet"
    android:textSize="15dp" />

<TextView
    android:id="@+id/menucharactersremaining"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignBaseline="@+id/menuposttweetbutton"
    android:layout_toLeftOf="@+id/menuposttweetbutton"
    android:text="This is the text view"
    android:textColor="#FFFFFF"
    android:textSize="20dp" />

<ImageView
    android:id="@+id/menuadView2"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true"
    android:layout_centerHorizontal="true"
    android:background="@android:color/white"
    android:src="@drawable/icon" />
</RelativeLayout>