溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

Android使用xml文件資源定義菜單實(shí)現(xiàn)方法示例

發(fā)布時(shí)間:2020-10-05 01:24:14 來(lái)源:腳本之家 閱讀:150 作者:水中魚之1999 欄目:移動(dòng)開(kāi)發(fā)

本文實(shí)例講述了Android使用xml文件資源定義菜單實(shí)現(xiàn)方法。分享給大家供大家參考,具體如下:

使用 XML 文件定義菜單

Android 提供了創(chuàng)建菜單的方式,一種是在 Java 代碼中創(chuàng)建,一種是使用XML 文件定義。上面的實(shí)例都是 Java 創(chuàng)建菜單,在 Java 存在如下大學(xué)。

實(shí)現(xiàn)效果如下:

Android使用xml文件資源定義菜單實(shí)現(xiàn)方法示例

具體實(shí)現(xiàn):

一、在 /res 下建立 /menu文件夾

二、在menu文件夾下建立:menu_main.xml:

<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android">
  <item android:title="@string/app_name"
    android:icon="@drawable/seek02">
    <menu>
      <!--定義一組選項(xiàng)菜單-->
      <group android:checkableBehavior="single">
        <!--定義多個(gè)菜單項(xiàng)-->
        <item
          android:id="@+id/font_10"
          android:title="font_10"/>
        <item
          android:id="@+id/font_12"
          android:title="font_12"/>
        <item
          android:id="@+id/font_14"
          android:title="font_14"/>
        <item
          android:id="@+id/font_16"
          android:title="font_16"/>
        <item
          android:id="@+id/font_18"
          android:title="font_18"/>
      </group>
    </menu>
  </item>
  <!--定義一個(gè)普通菜單項(xiàng)-->
  <item android:id="@+id/plain_item"
    android:title="plain_item"/>
  <item android:title="font_color"
    android:icon="@drawable/seek03">
    <menu>
      <!--定義一個(gè)普通選項(xiàng)菜單-->
      <group>
        <!--定義三個(gè)菜單項(xiàng)-->
        <item
          android:id="@+id/red_font"
          android:title="red_title"/>
        <item
          android:id="@+id/green_font"
          android:title="red_title"/>
        <item
          android:id="@+id/blue_font"
          android:title="red_title"/>
      </group>
    </menu>
  </item>
</menu>

三、在menu文件夾下建立: context.xml:

<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android">
  <!--定義一組單選菜單項(xiàng)-->
  <group android:checkableBehavior="single">
    <!--定義三個(gè)菜單項(xiàng)-->
    <item
      android:id="@+id/red"
      android:title="red_title"
      android:alphabeticShortcut="r"/>
    <item
      android:id="@+id/green"
      android:title="red_title"
      android:alphabeticShortcut="g"/>
    <item
      android:id="@+id/blue"
      android:title="red_title"
      android:alphabeticShortcut="b"/>
  </group>
</menu>

四、主活動(dòng)里的實(shí)現(xiàn):

public class MainActivity extends AppCompatActivity {
  private TextView textView;
  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    textView = (TextView) findViewById(R.id.txt);
    // 為文本框注冊(cè)上下文菜單
    registerForContextMenu(textView);
  }
  @Override
  public boolean onCreateOptionsMenu(Menu menu) {
    MenuInflater inflater = new MenuInflater(this);
    //裝填R.Menu.my_menu菜單,并添加到menu中
    inflater.inflate(R.menu.menu_main,menu);
    return super.onCreateOptionsMenu(menu);
  }
  //創(chuàng)建上下文菜單時(shí)觸發(fā)該方法
  @Override
  public void onCreateContextMenu(ContextMenu menu, View v, ContextMenu.ContextMenuInfo menuInfo) {
    MenuInflater inflater = new MenuInflater(this);
    //裝填R.Menu.menu菜單,并添加到menu中
    inflater.inflate(R.menu.context,menu);
    menu.setHeaderIcon(R.drawable.seek02);
    menu.setHeaderTitle("請(qǐng)選擇背景色");
  }
  //上下文菜單中菜單項(xiàng)被單擊時(shí),觸發(fā)該方法
  @Override
  public boolean onContextItemSelected(MenuItem item) {
    //勾選菜單項(xiàng)
    item.setChecked(true);
    switch (item.getItemId()){
      case R.id.red:
        item.setChecked(true);
        textView.setBackgroundColor(Color.RED);
        break;
      case R.id.green:
        item.setChecked(true);
        textView.setBackgroundColor(Color.GREEN);
        break;
      case R.id.blue:
        item.setChecked(true);
        textView.setBackgroundColor(Color.BLUE);
        break;
    }
    return true;
  }
  //菜單項(xiàng)被單擊后的回調(diào)方法
  @Override
  public boolean onOptionsItemSelected(MenuItem item) {
    if (item.isCheckable()){
      //勾選菜單項(xiàng)
      item.setCheckable(true);
    }
    //switch 判斷單擊哪個(gè)菜單項(xiàng),并有針對(duì)性的做出響應(yīng)
    switch (item.getItemId()){
      case R.id.font_10:
        textView.setTextSize(10 * 2);
        break;
      case R.id.font_12:
        textView.setTextSize(12 * 2);
        break;
      case R.id.font_14:
        textView.setTextSize(14 * 2);
        break;
      case R.id.font_16:
        textView.setTextSize(16 * 2);
        break;
      case R.id.font_18:
        textView.setTextSize(18 * 2);
        break;
      case R.id.red_font:
        textView.setTextColor(Color.RED);
        break;
      case R.id.green_font:
        textView.setTextColor(Color.GREEN);
        break;
      case R.id.blue_font:
        textView.setTextColor(Color.BLUE);
        break;
    }
    return true;
  }
}

更多關(guān)于Android相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《Android開(kāi)發(fā)入門與進(jìn)階教程》、《Android調(diào)試技巧與常見(jiàn)問(wèn)題解決方法匯總》、《Android基本組件用法總結(jié)》、《Android視圖View技巧總結(jié)》、《Android布局layout技巧總結(jié)》及《Android控件用法總結(jié)》

希望本文所述對(duì)大家Android程序設(shè)計(jì)有所幫助。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI