我有一个问题,我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>