web-dev-qa-db-ja.com

Androidポップアップウィンドウの作成方法

ボタンとポップアップを閉じるボタンのあるポップアップウィンドウを作成する必要があります。チュートリアルをいくつか見つけましたが、実装方法を見つけることができませんでした。

私がしたいこと:アクションボタンをクリックするとポップアップが表示され、閉じるボタンをクリックするとポップアップウィンドウが閉じる必要があります。

TuorialsにonCreateメソッドがあり、それがどのように呼び出されるのか理解できませんでした。

誰かがポップアップ実装の例や優れたチュートリアルへのリンクを提供できますか?ありがとうございました!

6
user3132352
private void showPopup(){
    Button btn_closepopup=(Button)layout.findViewById(R.id.btn_closePoppup);
    pwindo=new PopupWindow(layout,480,500,true);
    pwindo.showAtLocation(layout, Gravity.CENTER, 0, 40);
    chartContainer1.addView(mChart);
    btn_closepopup.setOnClickListener(new OnClickListener() {

        @Override
        public void onClick(View arg0) {
            // TODO Auto-generated method stub
            pwindo.dismiss();
        }
    });
}
7
Zeeshan Khan

enter image description here

 private void callPopup() {

 LayoutInflater layoutInflater = (LayoutInflater)getBaseContext()
 .getSystemService(LAYOUT_INFLATER_SERVICE);

View popupView = layoutInflater.inflate(R.layout.popup, null);

 popupWindow=new PopupWindow(popupView,
         LayoutParams.WRAP_CONTENT, LayoutParams.MATCH_PARENT,        
 true);

 popupWindow.setTouchable(true);
 popupWindow.setFocusable(true);

 popupWindow.showAtLocation(popupView, Gravity.CENTER, 0, 0);
 Name = (EditText) popupView.findViewById(R.id.edtimageName);

((Button) popupView.findViewById(R.id.saveBtn))
 .setOnClickListener(new OnClickListener() {

    @TargetApi(Build.VERSION_CODES.Gingerbread)
 public void onClick(View arg0) {
 Toast.makeText(getApplicationContext(),
     Name.getText().toString(),Toast.LENGTH_LONG).show();

  popupWindow.dismiss();

 }

});

((Button) popupView.findViewById(R.id.cancelbtutton))
  .setOnClickListener(new OnClickListener() {

  public void onClick(View arg0) {

   popupWindow.dismiss();
  }
});
6
Dhina k