Android - 无法在framelayout下方创建textview

时间:2014-06-27 10:00:36

标签: android android-layout

我在LinearLayout中有一个TextView和FrameLayout。 我无法在framelayout下方制作TextView,它会一直保持在最顶层。

这是我的代码:

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:gravity="bottom"
        android:text="TextView" />

    <FrameLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent" >

        <FrameLayout
            android:id="@+id/content_frame"
            android:layout_width="match_parent"
            android:layout_height="match_parent" />

        <ImageButton
            android:id="@+id/btnGoToTop"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center|bottom"
            android:layout_margin="5dip"
            android:background="@drawable/buttongototop"
            android:padding="5dip"
            android:visibility="gone" />
    </FrameLayout>

</LinearLayout>

4 个答案:

答案 0 :(得分:1)

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <FrameLayout
        android:layout_width="match_parent"
        android:layout_height="0dp" 
        android:layout_weight="1">

        <FrameLayout
            android:id="@+id/content_frame"
            android:layout_width="match_parent"
            android:layout_height="match_parent" />

        <ImageButton
            android:id="@+id/btnGoToTop"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center|bottom"
            android:layout_margin="5dip"
            android:background="@drawable/buttongototop"
            android:padding="5dip"
            android:visibility="gone" />
    </FrameLayout>

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:gravity="bottom"
        android:text="TextView" />

</LinearLayout>

关注FrameLayout layout_weightlayout_height。如果您使用match_parent保持高度,它将适合整个屏幕,在屏幕结束后将TextView 放在后面。

点击此链接了解layout_weight in LinearLayouts

答案 1 :(得分:0)

考虑到你在LinearLayout中,尝试颠倒frameLayout和textView的顺序;)

答案 2 :(得分:0)

试试这个...

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >



    <FrameLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent" >

        <FrameLayout
            android:id="@+id/content_frame"
            android:layout_width="match_parent"
            android:layout_height="match_parent" />

        <ImageButton
            android:id="@+id/btnGoToTop"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center|bottom"
            android:layout_margin="5dip"
            android:background="@drawable/buttongototop"
            android:padding="5dip"
            android:visibility="gone" />
    </FrameLayout>

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:gravity="bottom"
        android:text="TextView" />

</LinearLayout>

答案 3 :(得分:0)

TextView

进行以下更改
<TextView
    android:layout_width="wrap_content"
    android:layout_height="0dp"
    android:layout_weight="1"
    android:gravity="bottom"
    android:text="TextView" />

让我知道它是否有效。