如何从AlertDialog获取视图?

时间:2015-03-26 10:48:30

标签: android android-layout 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();

使用setPadding的行(这只是一个证据,它不是我想要做的)是错误的,因为是NullPointerException

3 个答案:

答案 0 :(得分:1)

这样做:

 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();

答案 1 :(得分:0)

这是你应该为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();

答案 2 :(得分:0)

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

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();
}