菜單
分類
選項菜單 OptionMenu
按menu鍵觸發
事件源是Activity
上下文菜單 ContextMenu
長按元件時觸發
子菜單 SubMenu
addSubMenu( )添加子菜單
用法
選項菜單
建立:重寫onCreatOptionsMenu(Menu menu)
在代碼裡給menu添加MenuItem
純java代碼
menu.add( )
加載menu資源檔案
1-獲得Menu加載器
MenuInflater m=getMenuInflater( );
2-加載Menu資源檔案
m.inflat(Menu資源檔案的id,menu目前菜單)
以上兩種加載方式可以并存
回調:重寫boolean onOptionsItemSelected(MenuItem item)
上下文菜單
Activity 是OnCreateContextMenuListener的實作類
建立:元件.setOnCreateContextMenuListener(this)
在代碼裡添加MenuItem,方式同 選項菜單
響應:重寫Activity的boolean onContextItemSelected(MenuItem item)
與LongClick監聽器的關系
LongClick監聽器的優先級高
boolean onLongClick(View v)的傳回值決定後續的監聽器能否被處理
package com.hanqi.testapp2;
import android.app.Activity;
import android.os.Bundle;
import android.view.ContextMenu;
import android.view.Menu;
import android.view.MenuInflater;
import android.view.MenuItem;
import android.view.SubMenu;
import android.view.View;
import android.widget.Button;
import android.widget.Toast;
public class TestActivity3 extends Activity {
Button bt_1;
Button bt_2;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_test3);
bt_1=(Button)findViewById(R.id.bt_1);
bt_2=(Button)findViewById(R.id.bt_2);
//給元件添加上下菜單 Activity是OnCreateContextMenuListener的實作類
bt_2.setOnCreateContextMenuListener(
this
);
//添加長按監聽器
// bt_2.setOnLongClickListener(new View.OnLongClickListener() {
// @Override
// public boolean onLongClick(View v) {
//
// Toast.makeText(TestActivity3.this, "按鈕被長按了", Toast.LENGTH_SHORT).show();
//
// return true;//後面不再處理
// }
// });
//點選
bt_1.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Toast.makeText(TestActivity3.this, "按鈕被點選了", Toast.LENGTH_SHORT).show();
}
});
//長按
bt_1.setOnLongClickListener(new View.OnLongClickListener() {
@Override
public boolean onLongClick(View v) {
Toast.makeText(TestActivity3.this, "按鈕被長按了", Toast.LENGTH_SHORT).show();
//事件是否已經被消費
return true;
}
});
}
//重寫建立上下文菜單的方法
@Override
public void onCreateContextMenu(ContextMenu menu, View v, ContextMenu.ContextMenuInfo menuInfo) {
super.onCreateContextMenu(menu, v, menuInfo);
//java
menu.add(1,0,1,"字型大小");
menu.add(1, 1, 2, "背景顔色");
SubMenu sm=menu.addSubMenu(1, 2, 3, "子菜單");
sm.add(2,21,0,"子菜單1");
sm.add(2,22,1,"子菜單2");
//加載檔案
MenuInflater m=getMenuInflater();
m.inflate(R.menu.test3_menu,menu);
}
@Override
public boolean onContextItemSelected(MenuItem item) {
Toast.makeText(TestActivity3.this, "上下文菜單的标題title="+item.getTitle(), Toast.LENGTH_SHORT).show();
return super.onContextItemSelected(item);
}
//給activity 添加選項菜單
//重寫
@Override
public boolean onCreateOptionsMenu(Menu menu) {
//添加菜單
// menu.add(1,1,0,"添加");
// menu.add(1,2,2,"修改");
// menu.add(1,3,1,"删除");
//加載菜單檔案方式
//1-獲得菜單加載器
MenuInflater m=getMenuInflater();
//2-加載菜單檔案 1)菜單檔案 2)目前菜單
m.inflate(R.menu.test3_menu,menu);
return super.onCreateOptionsMenu(menu);
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
Toast.makeText(TestActivity3.this, "菜單項的id="+item.getItemId()+"菜單項的title"+item.getTitle(), Toast.LENGTH_SHORT).show();
//怎麼判斷菜單檔案裡的菜單哪個被選中了
if(item.getItemId()==R.id.me_1)
{
Toast.makeText(TestActivity3.this, "執行删除動作", Toast.LENGTH_SHORT).show();
}
else if (item.getItemId()==R.id.me_2)
{
Toast.makeText(TestActivity3.this, "執行修改動作", Toast.LENGTH_SHORT).show();
}
return super.onOptionsItemSelected(item);
}
}
選項菜單,上下文菜單
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="com.hanqi.testapp2.TestActivity3"
android:orientation="vertical">
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="撥打電話"
android:id="@+id/bt_1" />
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="上下文菜單按鈕"
android:id="@+id/bt_2" />
</LinearLayout>
上下文菜單按鈕
<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android">
<item android:id="@+id/me_1" android:title="删除"/>
<item android:id="@+id/me_2" android:title="修改"/>
</menu>
Menu
轉載于:https://www.cnblogs.com/cycanfly/p/5475282.html