我有一個LinearLayout內的TextView和FrameLayout。 我無法將TextView放在framelayout的下方,它始終保持在頂部。Android - 無法使框架佈局下面的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>
非常感謝,現在可以運行 –