如何从 AlertDialog 获取视图?

How to get views from AlertDialog?

我用这种方式构建了一个 alertDialog:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="wrap_content">

    <TextView
        android:id="@+id/title"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="@string/title1"
        android:textSize="20sp"
        android:textColor="@color/white" />

    <TextView
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="@string/chars1" />

    <RelativeLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:id="@+id/RelativeLayout1"
        android:background="@drawable/body_white">
        <LinearLayout
            android:orientation="horizontal"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:id="@+id/Layout1"
            android:layout_centerHorizontal="true">
            <ImageView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:background="@drawable/img1"
                android:id="@+id/img1"
                android:layout_alignParentTop="true"
                />

            <ImageView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:id="@+id/img2"
                android:background="@drawable/img2"
                android:layout_alignParentTop="true"
                android:layout_toRightOf="@+id/img1"
                android:layout_toEndOf="@+id/img1" />
        </LinearLayout>
    </RelativeLayout>
</LinearLayout>

我想做这件事:

img1 = (ImageView) findViewById(R.id.img1);

但是这样做我收到了 NullPointerException

我用过这个:

(EditText)((Dialog) dialog).findViewById(R.id.username);

在早期的应用程序中,我在点击后获取价值。 在这种情况下,我没有对象 DialogInterface 对话框。所以我不能使用它。如何填充 img1?

我想要手动设置填充,但我想在 JAVA 中而不是在 XML 中执行此操作。

谢谢

编辑:

这是启动 alertDialog 的方法:

public void createDialog() {
        alertDialog = new AlertDialog.Builder(Instructions.this);
        LayoutInflater inflater = this.getLayoutInflater();
        alertDialog.setView(inflater.inflate(R.layout.alert_dialog_layout, null));
        n1Dialog = (ImageView) findViewById(R.id.img1);
        n1Dialog.setPadding(0,0,0,0);
        alertDialog.show();

    }

我有一个简单的按钮,在 onClick() 方法中有一个按钮

createDialog();

Row with setPadding(那只是一个证明,这不是我想要做的)是错误的,因为是 NullPointerException

这样做:

 alertDialog = new AlertDialog.Builder(Instructions.this);
            LayoutInflater inflater = this.getLayoutInflater();
            View dialogView=inflater.inflate(R.layout.alert_dialog_layout, null);
            alertDialog.setView(dialogView);
            n1Dialog = (ImageView) dialogView.findViewById(R.id.img1);
            n1Dialog.setPadding(0,0,0,0);
            alertDialog.show();

这是为 AlertDialog 扩充自定义视图的方式:

Builder myCustomDialog = new AlertDialog.Builder(yourContext);
        LayoutInflater factory = LayoutInflater.from(context);
    final View yourInflatedView = factory.inflate(R.layout.your_xml_layout, null);

    //Here you get your imageView (or TextView, EditText,...)
    ImageView img1 = (ImageView) yourInflatedView.findViewById(R.id.img1);

    // Do stuff with your imageview...

    myCustomDialog.setView(yourInflatedView);
    myCustomDialog.show();

您也可以通过以下方式创建对话框:

public void displayPopup(Context ctx) {
    Dialog cd_display = new Dialog(ctx);
    cd_display.requestWindowFeature(Window.FEATURE_NO_TITLE);
    cd_display.setContentView(R.layout.alert_dialog_layout);
    ImageView n1Dialog = (ImageView) cd_display.findViewById(R.id.img1);
    cd_display.show();
}