真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

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

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

在黃岡等地區(qū),都構(gòu)建了全面的區(qū)域性戰(zhàn)略布局,加強(qiáng)發(fā)展的系統(tǒng)性、市場(chǎng)前瞻性、產(chǎn)品創(chuàng)新能力,以專注、極致的服務(wù)理念,為客戶提供成都網(wǎng)站制作、網(wǎng)站建設(shè) 網(wǎng)站設(shè)計(jì)制作按需規(guī)劃網(wǎng)站,公司網(wǎng)站建設(shè),企業(yè)網(wǎng)站建設(shè),高端網(wǎng)站設(shè)計(jì),網(wǎng)絡(luò)營(yíng)銷推廣,外貿(mào)網(wǎng)站制作,黃岡網(wǎng)站建設(shè)費(fèi)用合理。

使用 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文件夾下建立: context.xml:

<?xml version="1.0" encoding="utf-8"?>

  
  
    
    
    
    
  


四、主活動(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ì)有所幫助。


新聞標(biāo)題:Android使用xml文件資源定義菜單實(shí)現(xiàn)方法示例
本文地址:http://weahome.cn/article/gjgspg.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部