我正在尝试在两种不同的布局中设置两个图像。
图像的分辨率大小:986 * 569。
0.50 重量的布局
如下所示:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/bluebg"
android:orientation="vertical" >
<LinearLayout
android:id="@+id/AmLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight=".50">
<ImageView
android:id="@+id/imageAm"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:src="@drawable/am"
android:visibility="visible" />
</LinearLayout>
<LinearLayout
android:id="@+id/horibreak1"
android:layout_width="match_parent"
android:layout_height="2dp"
android:background="#000000"
android:orientation="vertical" >
</LinearLayout>
<LinearLayout
android:id="@+id/PmLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight=".50">
<ImageView
android:id="@+id/imagePm"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:src="@drawable/pm"
android:visibility="visible" />
</LinearLayout>
</LinearLayout>
问题是图像未拉伸到完整布局。如何解决这个问题?
我得到类似的东西:http: //i.imgur.com/GT6es7o.png ?1