码迷,mamicode.com
首页 > 其他好文 > 详细

andriod的简单用法2

时间:2015-03-14 09:35:23      阅读:138      评论:0      收藏:0      [点我收藏+]

标签:

1、在Activity中使用menu

//创建菜单项  
public
boolean onCreateOptionsMenu(Menu menu) { // Inflate the menu; this adds items to the action bar if it is present. getMenuInflater().inflate(R.menu.main, menu); return true; } //点击其中一个菜单中时触发该事件 @Override public boolean onOptionsItemSelected(MenuItem item) { // Handle action bar item clicks here. The action bar will // automatically handle clicks on the Home/Up button, so long // as you specify a parent activity in AndroidManifest.xml. int id = item.getItemId(); if (id == R.id.action_settings) { return true; } return super.onOptionsItemSelected(item); }

2、销毁活动,即从堆栈中去掉该Activity,并不一定是退出应用。

    finish();  

3、

andriod的简单用法2

标签:

原文地址:http://www.cnblogs.com/zhouxiuquan/p/4337016.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!