6
//create inflater
final LayoutInflater inflater = (LayoutInflater) this
                .getSystemService(Context.LAYOUT_INFLATER_SERVICE);
//create popupwindow
    PopupWindow pw=new PopupWindow(inflater.inflate(R.layout.menu, (ViewGroup)findViewById(R.layout.dictionarylist)));

        Button Menu = (Button) findViewById(R.id.Menu);
        Menu.setOnClickListener(new Button.OnClickListener() {
            public void onClick(View v) {
                pw.showAtLocation(v, Gravity.CENTER, 0, 0);
                pw.update(0, 0, 200, 250);
                pw.setOutsideTouchable(false);
            }
        });

私が欲しいのは、親アクティビティのボタンをクリックしたときにポップアップ ウィンドウを表示することです。ポップアップウィンドウには、ボタンをクリックするといくつかの機能を実行するボタンがあります。

ここに画像の説明を入力

4

1 に答える 1

1

ボタンのビューを見つけて、次のようにリスナーをボタンに割り当てる必要があります。

View pview=inflater.inflate(R.layout.menu, (ViewGroup)findViewById(R.layout.dictionarylist));

Button Menu = (Button) pview.findViewById(R.id.Menu);

Menu.setOnClickListener(new Button.OnClickListener() {
            public void onClick(View v) {
                pw.showAtLocation(v, Gravity.CENTER, 0, 0);
                pw.update(0, 0, 200, 250);
                pw.setOutsideTouchable(false);
            }

また、まだ気に入っていない場合は、インフレータを初期化します。

Inflator inflator = LayoutInflater.from(this);
于 2012-11-04T08:32:32.183 に答える