无法设置alertdialog大小

时间:2013-07-31 13:46:34

标签: android xml size alertdialog

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

0 个答案:

没有答案