如何在android中设置适合50%屏幕的图像

时间:2016-09-29 19:47:34

标签: android layout

我想设置一个适合50%屏幕的图像,但我不能这样做。

这是我的代码

<?xml version="1.0" encoding="utf-8"?>

<LinearLayout
    android:id="@+id/frontImage"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical"
    android:layout_weight="2"
    >
    <ImageView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:src="@drawable/background"/>
</LinearLayout>

1 个答案:

答案 0 :(得分:1)

: