0

アプリで、入力テキスト フィールドと [OK] ボタンと [キャンセル] ボタンを含むポップアップ ウィンドウを作成したいと考えています。

これはMainActivityの私のコードです:

forgotPassword.setOnClickListener(new View.OnClickListener() {

                public void onClick(View v) {
                    View pview = inflater.inflate(R.layout.forgot_password_popup,(ViewGroup)findViewById(R.layout.login));

                    final PopupWindow pw = new PopupWindow(inflater.inflate(R.layout.forgot_password_popup,(ViewGroup)findViewById(R.layout.login)));
                    pw.showAtLocation(v, Gravity.LEFT,0,0);
                    pw.update(8,-70,150,270);

                    //if onclick written here, it gives null pointer exception.
                    Button okbtn=(Button)pview.findViewById(R.id.okbtn);
                    Button cancelbtn = (Button)pview.findViewById(R.id.cancelbtn);
                    final EditText emailText = (EditText) pview.findViewById(R.id.EmailText);
                    okbtn.setOnClickListener(new OnClickListener()
                    {
                        public void onClick(View v)
                        {
                            try {
                                ParseUser.requestPasswordReset(emailText.getText().toString());
                            } catch (ParseException e) {
                                // TODO Auto-generated catch block
                                e.printStackTrace();
                            }
                        }
                    });

                    cancelbtn.setOnClickListener(new OnClickListener()
                    {
                        public void onClick(View v)
                        {
                            pw.dismiss();

                        }
                });

                }
            });

ここに私の忘れたpassword_popup.xmlがあります:

<?xml version="1.0" encoding="utf-8"?>

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

     <EditText
         android:id="@+id/EmailText"
         android:layout_width="fill_parent"
         android:layout_height="wrap_content"
         android:layout_marginTop="5dip"
         android:hint="Enter Email Address"
         android:inputType="textEmailAddress"
         android:password="true"
         android:singleLine="true" />

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content" >

        <Button
            android:id="@+id/okbtn"
            android:layout_width="80dp"
            android:layout_height="wrap_content"
            android:layout_marginLeft="50dp"
            android:text="OK" />

        <Button
            android:id="@+id/cancelbtn"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginLeft="50dp"
            android:text="Cancel" />
    </LinearLayout>

    </LinearLayout>

ただし、途切れます(テキストフィールドまたはキャンセルボタンが表示されません。また、ポップアップウィンドウの背景はありません(透明な背景が必要です)

また、[OK]ボタンをクリックできないため、コードに問題があります

喜んでお手伝いします

これは次のようになります。

http://img827.imageshack.us/img827/9545/capturehdv.png

どうもありがとう

4

1 に答える 1

0

簡単な解決策は、透明な画像を取得し、ポップアップ レイアウトの背景として設定することです。

また、試してみてください

android:background=@null
于 2013-03-05T16:20:00.860 に答える