我遇到的问题是我的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>