我有以下xml文件:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<FrameLayout
android:id="@+id/topFragment"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center">
<ImageView
android:id="@+id/imageViewTest"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/icon_00" />
<TextView
android:id="@+id/textViewTest"
android:layout_below="@+id/imageViewTest"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="This is a Test"/>
</RelativeLayout>
<FrameLayout
android:id="@+id/bottomFragment"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom|center_horizontal" />
</LinearLayout>
我的目标是: - 第一个FrameLayout位于顶部(可行) - RelativeLayout中的元素位于屏幕中间(不起作用) - 最后一个FrameLayout位于底部(不起作用)
它应该是这样的:
我之前在android:gravity="center"
中使用RelativeLayout
而第二次android:layout_gravity="bottom|center_horizontal"
FrameLayout
的尝试失败了。
答案 0 :(得分:1)
使用相对布局并使用android:layout_centerHorizontal="true"
代替重力。
修改强>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<FrameLayout
android:id="@+id/topFragment"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_below="@+id/topFragment">
<ImageView
android:id="@+id/imageViewTest"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/icon_00"
android:layout_centerHorizontal="true" />
<TextView
android:id="@+id/textViewTest"
android:layout_below="@+id/imageViewTest"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="This is a Test"
android:layout_centerHorizontal="true"/>
</RelativeLayout>
<FrameLayout
android:id="@+id/bottomFragment"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true" />
</RelativeLayout>
答案 1 :(得分:1)
将LineareLayout
更改为Relative
并使用layout_centerInParent作为中间版面,将alignParentBottom
更改为最后一版。
默认情况下,顶部View
将固定在顶部
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"> //removed orientation as it won't be needed anymore
<FrameLayout
android:id="@+id/topFragment"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<RelativeLayout
android:layout_width="wrap_content" // change here
android:layout_height="wrap_content"
android:layout_centernInParent="true"> // here
<ImageView
android:id="@+id/imageViewTest"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/icon_00" />
<TextView
android:id="@+id/textViewTest"
android:layout_below="@+id/imageViewTest"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="This is a Test"/>
</RelativeLayout>
<FrameLayout
android:id="@+id/bottomFragment"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true" /> //here
</RelativeLayout>