0

数日間検索していますが、答えが見つかりません。XML を使用してイメージ ビューのサイズを変更しようとしています。

<TableRow android:layout_height="wrap_content" android:id="@+id/header" android:layout_width="match_parent"> <TableLayout android:layout_height="wrap_content" android:id="@+id/logo" android:layout_width="wrap_content" android:layout_weight="1"> <ImageView android:src="@drawable/iconwide" android:id="@+id/imageView1" android:layout_width="match_parent" android:layout_height="match_parent"></ImageView> </TableLayout> <TableLayout android:layout_height="wrap_content" android:id="@+id/user" android:layout_width="wrap_content" android:layout_weight="1"> <TextView android:layout_width="wrap_content" android:text="@string/user" android:layout_height="wrap_content" android:id="@+id/suser" android:layout_weight="1"></TextView> </TableLayout> </TableRow>

サイズを変更する方法はありますか?次のようになります: http://i55.tinypic.com/2h3u4hh.png

4

1 に答える 1

3

特定のサイズが必要な場合は、密度に依存しないピクセルを使用して、XML でそのサイズを指定できます。mdpi 画面では 1 dp = 1 ピクセルで、すべての画面で 100 dp はおよそ 1 インチに相当します。

<ImageView
    android:src="@drawable/iconwide"
    android:id="@+id/imageView1"
    android:layout_width="200dp"
    android:layout_height="50dp"/>
于 2011-05-02T21:33:38.027 に答える