в чем ошибка в моем коде, он не показывает всплывающее окно (Android)? - PullRequest
1 голос
/ 15 февраля 2012

При нажатии на всплывающую кнопку не отображается всплывающее окно, а принудительно закрывается приложение. Здесь я включил свой код (XML и Java) для моего родного приложения для Android.

popup.xml

<Button
    android:id="@+id/ButtonPopup"
    android:layout_marginTop="20dip"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:onClick="onButtonInPopup"
    android:text="Dismiss this PopupWindow">
</Button>

Java-код

public void onButtonPopup (View target) {
       // Make a View from our XML file
       LayoutInflater inflater = (LayoutInflater)
             this.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
       View layout = inflater.inflate(R.layout.popup,(ViewGroup) findViewById(R.id.ButtonPopup));

       m_pw = new PopupWindow( layout,  350,  250,  true);
       m_pw.showAtLocation(layout, Gravity.CENTER, 0, 0);
    }

Ответы [ 2 ]

1 голос
/ 15 февраля 2012

Вы надули popup.xml и определили родителя как (ViewGroup) findViewById(R.id.ButtonPopup).Эта ViewGroup не будет создаваться, пока вы не надуете макет.findViewById будет работать только после установки макета в setContentView.Попробуйте накачать с помощью этого -

View layout = inflater.inflate(R.layout.popup, null);
0 голосов
/ 15 февраля 2012

@ babu: Если вы хотите реализовать всплывающее окно «Custom» для макета вашего желания, используйте это: «Это очень мне поможет и надежда также поможет вам».

См. Эту демонстрацию:

    public class ExPopup extends Activity {

    Dialog myDialog;
    Button myButton;

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);

        myButton = (Button) findViewById(R.id.ClkBtn);

        myButton.setOnClickListener(new OnClickListener() {          
        @Override
            public void onClick(View v) {
                myDialog = new Dialog(ExPopup.this,R.style.CustomDialogTheme);
                myDialog.setContentView(R.layout.mydialog);

                //requestWindowFeature(Window.FEATURE_NO_TITLE);
                //myDialog.setTitle("My Dialog");
                myDialog.setCancelable(true);
//                Button button = (Button) myDialog.findViewById(R.id.Btn1);
//                button.setOnClickListener(new OnClickListener() {
//                @Override
//                    public void onClick(View v) {
//                  myDialog.dismiss();
//                    }
//                });
//    
                myDialog.show();
            }
        });
    }


 }
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...