我试图在 LinearLayout 的顶部放置 1 个图像,在 LinearLayout 的底部放置 1 个图像。
但是在我尝试了所有的事情之后,我只能得到一个图像布局低于另一个。我想要 1 对齐到顶部,1 对齐到底部。
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:orientation="vertical">
<ImageView
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:background="@drawable/bg1"
android:layout_gravity="top" />
<ImageView
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:background="@drawable/bg2"
android:layout_gravity="bottom" />
</LinearLayout>
我曾尝试将 RelativeLayout (在主容器中)与 layout_alignParentBottom (在我的第二个图像中)一起使用,但这也不能解决我的问题。
谢谢你的任何想法。