我看到一些关于“ImageView”的问题,但我需要一个FrameLayout
.
我有一个 FrameLayout,我需要它的width:height
= 2:1
,宽度是fill_parent
. 框架布局中有很多图像视图,我可以设置它们width=fill_parent
和height=fill_parent
.
我没有找到方法来做到这一点,请帮助。
我的xml代码是:
<FrameLayout
android:id="@+id/cardView"
android:layout_width="fill_parent" android:layout_height="fill_parent"
android:layout_centerInParent="true">
<ImageView
android:id="@+id/frameView"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:scaleType="fitXY"
android:src="@drawable/card_style1"
/>
</FrameLayout>