Изменение размера изображения - PullRequest
0 голосов
/ 03 мая 2011

Я ищу несколько дней и не могу найти ответ. Я пытаюсь изменить размер изображения через XML. <pre></p> <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

1 Ответ

3 голосов
/ 03 мая 2011

Если вам нужен конкретный размер, вы можете указать этот размер с помощью 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"/>
...