亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

懸浮菜單在android中的實現方式

小樊
96
2024-09-06 16:21:31
欄目: 編程語言

在Android中,實現懸浮菜單通常有兩種方法:使用PopupWindow或者使用PopupMenu

  1. 使用PopupWindow:

首先,創建一個布局文件(例如:popup_window.xml),定義懸浮菜單的內容和樣式。

<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:orientation="vertical">

   <TextView
        android:id="@+id/item1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:padding="8dp"
        android:text="Item 1" />

   <TextView
        android:id="@+id/item2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:padding="8dp"
        android:text="Item 2" />

</LinearLayout>

接下來,在Activity或Fragment中創建并顯示PopupWindow。

// 創建PopupWindow實例
PopupWindow popupWindow = new PopupWindow(this);
popupWindow.setContentView(LayoutInflater.from(this).inflate(R.layout.popup_window, null));
popupWindow.setWidth(ViewGroup.LayoutParams.WRAP_CONTENT);
popupWindow.setHeight(ViewGroup.LayoutParams.WRAP_CONTENT);
popupWindow.setOutsideTouchable(true);
popupWindow.setFocusable(true);

// 設置點擊事件
View item1 = popupWindow.getContentView().findViewById(R.id.item1);
item1.setOnClickListener(new View.OnClickListener() {
    @Override
    public void onClick(View v) {
        // 處理點擊事件
    }
});

View item2 = popupWindow.getContentView().findViewById(R.id.item2);
item2.setOnClickListener(new View.OnClickListener() {
    @Override
    public void onClick(View v) {
        // 處理點擊事件
    }
});

// 顯示PopupWindow
View anchorView = findViewById(R.id.anchor_view); // 錨點視圖,即懸浮菜單顯示在哪個視圖的周圍
popupWindow.showAsDropDown(anchorView);
  1. 使用PopupMenu:

首先,在res/menu目錄下創建一個菜單資源文件(例如:popup_menu.xml)。

<menu xmlns:android="http://schemas.android.com/apk/res/android">
    <item
        android:id="@+id/item1"
        android:title="Item 1" />
    <item
        android:id="@+id/item2"
        android:title="Item 2" />
</menu>

接下來,在Activity或Fragment中創建并顯示PopupMenu。

View anchorView = findViewById(R.id.anchor_view); // 錨點視圖,即懸浮菜單顯示在哪個視圖的周圍
PopupMenu popupMenu = new PopupMenu(this, anchorView);
popupMenu.getMenuInflater().inflate(R.menu.popup_menu, popupMenu.getMenu());

// 設置點擊事件
popupMenu.setOnMenuItemClickListener(new PopupMenu.OnMenuItemClickListener() {
    @Override
    public boolean onMenuItemClick(MenuItem item) {
        switch (item.getItemId()) {
            case R.id.item1:
                // 處理點擊事件
                break;
            case R.id.item2:
                // 處理點擊事件
                break;
        }
        return true;
    }
});

// 顯示PopupMenu
popupMenu.show();

這兩種方法都可以實現懸浮菜單,你可以根據項目需求選擇合適的方法。

0
日土县| 开远市| 喀什市| 晋江市| 陇川县| 三台县| 赣榆县| 秦皇岛市| 翼城县| 酒泉市| 灵山县| 定襄县| 社会| 汉川市| 澎湖县| 宜阳县| 石泉县| 兴化市| 兴宁市| 彭水| 廊坊市| 新建县| 永兴县| 桓仁| 达拉特旗| 邹平县| 海盐县| 新密市| 泰顺县| 广灵县| 贡觉县| 宾阳县| 榆社县| 仁布县| 卢湾区| 河源市| 大石桥市| 温州市| 广安市| 镇平县| 滦南县|