alertdialog
一辺の長さが の完全な正方形である固定の最大サイズがあるという問題がありmin(parent width, parent height)
ます。alertdialog
これにより、ワイドスクリーンにすることができないという問題が生じます。
ダイアログで、画像を表示するために をロードしimageview
ました。この画像を正方形ではなくワイドスクリーンで表示したい-これにより、画像が小さくなります。
活動中のコードalertDialog
:
AlertDialog.Builder alertadd = new AlertDialog.Builder(MainActivity.this);
LayoutInflater factory = LayoutInflater.from(MainActivity.this);
final View view = factory.inflate(R.layout.schematic_image_view, null);
alertadd.setView(view);
alertadd.show();
xml ファイルのコードschematic_image_view.xml
:
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/layout_root"
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="0dp">
<ImageView
android:id="@+id/schematic"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scaleType="fitXY"
android:src="@drawable/schematic">
</ImageView>