#android
#Android
Вопрос:
Привет!
Размер растрового изображения в imageview не похож на 10×10
Мой код:
iv = (ImageView) findViewById(R.id.imageViewPizza);
iv.setMaxHeight(10);
iv.setMaxWidth(10);
Скриншот:
Изображение меньше, чем 10×10
Макет:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" android:orientation="vertical">
<TextView android:text="Name" android:id="@ id/textView1" android:layout_width="wrap_content" android:layout_height="wrap_content"></TextView>
<MultiAutoCompleteTextView android:id="@ id/multiAutoCompleteTextView1" android:layout_height="wrap_content" android:text="" android:layout_width="fill_parent"></MultiAutoCompleteTextView>
<TextView android:text="Bewertung" android:id="@ id/textView2" android:layout_width="wrap_content" android:layout_height="wrap_content"></TextView>
<RatingBar android:id="@ id/ratingBar1" android:layout_width="wrap_content" android:layout_height="wrap_content"></RatingBar>
<TextView android:text="Foto hinzufügen" android:id="@ id/textView3" android:layout_width="wrap_content" android:layout_height="wrap_content"></TextView>
<ImageView android:layout_height="wrap_content" android:src="@drawable/icon" android:layout_width="wrap_content" android:id="@ id/imageViewPizza" ></ImageView>
<RelativeLayout android:id="@ id/relativeLayout1" android:layout_width="fill_parent" android:layout_height="fill_parent">
<Button android:text="hinzufügen" android:layout_height="wrap_content" android:id="@ id/bt_addform" android:layout_alignParentBottom="true" android:layout_width="fill_parent"></Button>
</RelativeLayout>
</LinearLayout>
Пожалуйста, помогите
Комментарии:
1. попробуйте установить его в XML-файле, используя
android:layout_height
иandroid:layout_width
Ответ №1:
Для layout_width и layout_height установлены значения wrap_content, в дополнение к установке явных значений для width и height . Вместо этого вы должны просто установить layout_width и layout_height в некоторое числовое значение. Смотрите эту ссылку: http://developer.android.com/guide/practices/screens_support.html
Ответ №2:
Установите желаемую ширину, затем добавьте режим scaleType. Я бы попробовал fitXY.
http://developer.android.com/reference/android/widget/ImageView.ScaleType.html
Ответ №3:
Попробуйте установить значение LayoutParams
ImageView
следующим образом.
iv = (ImageView) findViewById(R.id.imageViewPizza);
iv.setLayoutParams(new LayoutParams(10,10));
Он установит ширину и высоту, связанные с представлением.