PopupWindowとPopupMenuの使い方

9832 ワード

PopupWindowとPopupMenuの使い方
@(Blog)[マーク飛象|Markdown|Android]
  • PopupWindowとPopupMenuの使い方
  • PopupMenu
  • PopupWindow

  • PopupWindowPopupMenuの機能はいずれもフォームをポップアップするためですが、PopupMenuの機能は単一で、PopupWindowはもっと強いです.
    PopupMenu
    <menu xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:app="http://schemas.android.com/apk/res-auto"
        xmlns:tools="http://schemas.android.com/tools"
        tools:context="com.example.focus.androidnote.popupwindow.PopupWindowActivity">
        <item 
            android:id="@+id/action_refresh" 
            android:title="@string/action_refresh"
            android:orderInCategory="100" 
            app:showAsAction="never" />
        <item android:id="@+id/action_settings" 
            android:title="@string/action_settings"
            android:orderInCategory="100" 
            app:showAsAction="never" />
    menu>
    public class PopupWindowActivity extends BaseActivity {
    
        private Button mPopWindowBtn;
        private Button mPopMenuBtn;
    
        private View mPopWindowView;
        private PopupWindow mPopWindow;
    
        @Override
        protected void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            setContentView(R.layout.activity_popup_window);
    
            mPopWindowBtn = (Button) findViewById(R.id.pop_window_btn);
            mPopMenuBtn = (Button) findViewById(R.id.pop_menu_btn);
    
            mPopMenu = new PopupMenu(mContext, mPopMenuBtn);
            mPopMenu = new PopupMenu(mContext, mPopMenuBtn);
            mPopMenu.getMenuInflater().inflate(R.menu.menu_popup_window, mPopMenu.getMenu());
        }
    
        @Override
        public boolean onCreateOptionsMenu(Menu menu) {
            // Inflate the menu; this adds items to the action bar if it is present.
            getMenuInflater().inflate(R.menu.menu_popup_window, menu);
    
            return true;
        }
    
        @Override
        public boolean onOptionsItemSelected(MenuItem item) {
            int id = item.getItemId();
    
            if (id == R.id.action_settings) {
                Toast.makeText(mContext, "Settings", Toast.LENGTH_SHORT).show();
            } else if (id == R.id.action_refresh) {
                Toast.makeText(mContext, "Refresh", Toast.LENGTH_SHORT).show();
            }
    
            return true;
        }
    
        public void popMenuBtnOnClick(View view) {
            mPopMenu.show();
        }
    }

    上のコードが一番主要なのは3行だけです.
    mPopMenu = new PopupMenu(mContext, mPopMenuBtn);
    mPopMenu.getMenuInflater().inflate(R.menu.menu_popup_window, mPopMenu.getMenu());

    簡単です.2行のコードだけで終わります.期首はPopupMenuActivityMenuとClickイベントを共用すると思っていたが、onOptionsItemSelectedメソッドを実装するとActivityMenuだけがイベントをトリガーすることが分かった.mPopMenuはsetOnMenuItemClickListener()を介してクリックイベントのリスニングを実現しなければならない
    PopupWindow
    PopupWindowはmenuよりも機能が強く、レイアウトが複雑になる
    
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:orientation="vertical" android:layout_width="100dp"
        android:layout_height="120dp"
        android:background="@drawable/bg_pop_window">
    
        <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center_horizontal"
            android:layout_marginTop="20dp"
            android:background="@android:color/transparent"
            android:text="@string/action_settings"
            android:textColor="@android:color/white"
            android:textAllCaps="false"/>
        <View
            android:layout_width="wrap_content"
            android:layout_height="2dp"
            android:background="@color/material_blue_grey_800"/>
    
        <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center_horizontal"
            android:background="@android:color/transparent"
            android:text="@string/action_refresh"
            android:textColor="@android:color/white"
            android:textAllCaps="false"/>
    LinearLayout>
    mPopWindowView = getLayoutInflater().inflate(R.layout.pop_window_layout, null);
    // Focusable  True,PopupWindow         
    mPopWindow = new PopupWindow(mPopWindowView, 150, 120, true);
    //              ,           
    mPopWindow.setBackgroundDrawable(new ColorDrawable(Color.TRANSPARENT));
    // Focusable  False ,               
    //mPopWindow.setOutsideTouchable(true); 
    
    //        View    ,                  
    mPopWindow.showAsDropDown(view);

    実は使い方とMenuの差は多くありませんが、背景色はコードの中で設定しなければなりません.そうしないと、外のフォームをクリックしても消えません.これがBUGなのか、Googleがこのように設計されているのか、少し理解できません.
    Android:textAllCaps="false"refresh表示時にすべての大文字Focusable属性として表示されることを防止し、falseのwindow内のコンポーネントに設定するとonClickイベントを受信できないことを発見する