1

我有一个图像视图,在表格单元格中显示了一个 9 补丁,我想将其用作水平条。但是,无论我尝试什么宽度/高度(match_parent、minWidth 等),我都无法让它缩放以填充单元格。我可以缩放它以使用缩放类型“FitXY”填充整个单元格。如何将缩放设置为 FitX 但保持 Y 不变?

编辑:这是展示我的问题的简化布局。这是一个 2x2 的图像表,包含三个默认 Android 图标副本和一个我的“bluebar”9patch (imageView3) 实例我希望 imageView3 水平拉伸以跨越单元格。

<TableLayout
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:weightSum="2"
    android:stretchColumns="*" >

    <TableRow
        android:id="@+id/tableRow1"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_weight="1" >

        <ImageView
            android:id="@+id/imageView1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:src="@drawable/ic_launcher" />

        <ImageView
            android:id="@+id/imageView2"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:src="@drawable/ic_launcher" />

    </TableRow>

    <TableRow
        android:id="@+id/tableRow2"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent" 
        android:layout_weight="1">

        <ImageView
            android:id="@+id/imageView3"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:src="@drawable/bluebar" />

        <ImageView
            android:id="@+id/imageView4"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:src="@drawable/ic_launcher" />

    </TableRow>
</TableLayout>

4

0 回答 0