У меня есть следующий макет для alerttdialog (я хочу диалоговое окно предупреждения только с изображением в нем)
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/imageImageViewId"
android:src="@drawable/stub" />
</LinearLayout>
В результате я получаю: http://img14.imageshack.us/img14/3333/imagenp.png
Вы можете видеть, чтоДиалоговое окно оповещения больше, чем само изображение ...
Что можно сделать, чтобы оно уместилось?