0

我想在我的应用程序中创建一个带有输入文本字段和确定和取消按钮的弹出窗口:

这是我在 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>

但是它被切断了(我看不到文本字段或取消按钮,而且弹出窗口没有任何背景(我想要透明背景)

而且,我不能点击确定按钮,所以我的代码有问题

我很乐意帮忙

这是它的样子:

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

多谢

4

1 回答 1

0

简单的解决方案是采用透明图像并将其设置为弹出布局的背景。

也试试

android:background=@null
于 2013-03-05T16:20:00.860 回答