我想知道我们是否可以同时将layout_alignParentBottom和layout_below设置为具有以下优先级,如果视图更大,则优先级调整到父级的底部。
<RelativeLayout
android:id="@+id/questions"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_marginEnd="@dimen/oneThirtyDP"
android:layout_marginStart="@dimen/oneThirtyDP">
<TextView
android:id="@+id/img_how_expeirence"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:text="howaboutfollowing"
android:textColor="#2c364c"
android:textSize="@dimen/fiftyTwoSP"
android:textStyle="bold" />
<ListView
android:id="@+id/my_recycler_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/img_how_expeirence"
android:layout_above="@+id/bottom_buttons"
android:layout_marginBottom="@dimen/tenDp"
android:layout_marginTop="@dimen/fiveDp"
android:divider="@android:color/transparent"
android:dividerHeight="0dp" />
<RelativeLayout
android:id="@+id/bottom_buttons"
android:layout_alignParentBottom="true"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/tenDp">
</RelativeLayout>
</RelativeLayout>
如果列表视图的大小(wrap_content),则bottom_buttons应位于列表视图下方,如果列表视图中有许多项目,则应该与父项的底部对齐。