ImageView в пользовательском диалоге - fill_parent не работает, и мой диалог маленький - PullRequest
3 голосов
/ 12 января 2012

У меня есть простая просьба: я должен поместить несколько изображений (небольшое разрешение, некоторое большое разрешение) в диалоговое окно и отобразить их в полноэкранном режиме.

Я попробовал это:* И мой макет:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
              android:id="@+id/layout_root"
              android:orientation="vertical"
              android:layout_width="fill_parent"
              android:layout_height="fill_parent"
              android:layout_gravity="center"
              >
    <ImageView android:id="@+id/image"
               android:layout_width="fill_parent"
               android:layout_height="fill_parent"
               android:padding="10dip"
               />
</LinearLayout>

Поскольку я везде писал fill_parent, разве диалог не должен занимать весь экран?

enter image description here

Ответы [ 2 ]

8 голосов
/ 12 января 2012

Попробуйте это:

dialog.getWindow().getAttributes().width = LayoutParams.FILL_PARENT;

Надеюсь, это поможет.

0 голосов
/ 19 августа 2014
try this will work

//Grab the window of the dialog, and change the width
        WindowManager.LayoutParams lp = new WindowManager.LayoutParams();
        Window window = dialog.getWindow();
        lp.copyFrom(window.getAttributes());
        //This makes the dialog take up the full width
        lp.width = WindowManager.LayoutParams.MATCH_PARENT;
        lp.height = WindowManager.LayoutParams.MATCH_PARENT;
        window.setAttributes(lp);
...