将所有内容放在一个文件中,以及代码和结果更清晰:
答案 0 :(得分:1)
试试这个..
<ImageView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:adjustViewBounds="false"
android:background="@drawable/image1"/>
修改强>
<?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:orientation="horizontal"
android:weightSum="2"
android:gravity="right" >
<ImageView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:adjustViewBounds="false"
android:layout_gravity="right"
android:layout_weight="1"
android:background="@drawable/ic_launcher"/>
</LinearLayout>
<强> EDIT2 强>
<?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:gravity="right"
android:orientation="vertical"
android:weightSum="10" >
<ImageView
android:layout_width="fill_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:background="@drawable/ic_launcher" />
</LinearLayout>
答案 1 :(得分:0)
将图像视图的宽度放到&#34; fill_parent&#34;。 它也解决了你的问题。