-3

它是怎样的:http: //i49.tinypic.com/352lxdt.png 我想要的:http: //i45.tinypic.com/bahc1.png

如何通过 XML 和代码做到这一点。?我正在使用相对布局。还想要 API 级别 8(来自 android 2.3+).. 所以不能使用 setWidth()、setHeight() 帮助..?

4

1 回答 1

1

尝试使用具有权重总和的 LinearLayout 包装 RelativeLayout,并为 RelativeLayout 赋予所需的权重。例子:

<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:weightSum="2" >

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_weight="1" >

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        tools:context=".MainActivity" >

        <ImageView
            android:id="@+id/imageView1"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:layout_alignParentLeft="true"
            android:layout_alignParentRight="true"
            android:layout_alignParentTop="true"
            android:background="@android:color/black"
            android:scaleType="fitXY" />
    </RelativeLayout>
</LinearLayout>

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent" >
</LinearLayout>

于 2012-12-10T19:31:21.513 回答