我试图在同一个活动中显示2个图像,一个在另一个上面使用假视图。我希望2幅图像能够拉伸它们的宽度以覆盖屏幕宽度并拉伸它们的高度,以便每个图像覆盖屏幕的一半。如何只用XML做?
答案 0 :(得分:1)
答案 1 :(得分:0)
布局将是这样的。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:layout_weight="1"
android:layout_width="fill_parent"
android:layout_height="fill_parent" />
<ImageView
android:layout_weight="1"
android:layout_width="fill_parent"
android:layout_height="fill_parent" />
</LinearLayout>