首页 > 代码库 > AndroidUI组件之ActionBar
AndroidUI组件之ActionBar
有一段时间没有写博文了,发现自己的博文的完整度不是很好,就拿AndroidUI组件这一块,一直没有更新完,我会尽快更新。好了,不多说了,今天来看一下ActionBar。
按照以往的作风,知识点都以代码注释的形式在源代码中。
package com.gc.actionbardemo;/** * 1、活动条(ActionBar)是Android3.0的重要更新之一。ActionBar位于传统标题栏的位置 * 也就是显示的屏幕的顶部。ActionBar可显示应用的图标和Activity标题---也就是应用 * 程序顶部显示的内容。除此之外,ActionBar的右边还可以显示活动项。 * 2、ActionBar提供了如下功能 * (1)显示选项菜单的菜单项(将菜单项显示成Action Item) * (2)使用程序图标作为返回Home主屏或向上的导航操作 * (3)提供交互式View作为Action View * (4)提供基于Tab的导航方式,可用于切换多个Fragment * (5)提供基于下拉的导航方式 * 3、如果希望关闭ActionBar,可以设置该应用的主题为Xxx.NoActionBar * 4、一旦关闭了ActionBar,该Android应用将不能使用ActionBar * 5、实际项目中,通常推荐使用代码来控制ActionBar显示、隐藏,ActionBar * 提供了如下方法来控制显示、隐藏。 * show():显示ActionBar * hide():隐藏ActionBar */import android.os.Bundle;import android.app.ActionBar;import android.app.Activity;import android.view.Menu;import android.view.View;/** * * @author Android将军 * */public class ActionBarTest extends Activity { private ActionBar actionBar; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_action_bar_test); //获取该Activity的ActionBar //只有当应用主题没有关闭ActionBar时,该代码才能返回ActionBar actionBar=getActionBar(); } //为“显示ActionBar”按钮定义事件处理方法 public void showActionBar(View source) { //显示ActionBar actionBar.show(); } //为“隐藏ActionBar”按钮定义事件处理方法 public void hideActionBar(View source) { //隐藏ActionBar actionBar.hide(); } }
该Activity所对应的布局文件是activity_action_bar_test,代码如下所示:
<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" > <Button android:onClick="showActionBar" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="显示ActionBar" /> <Button android:onClick="hideActionBar" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="隐藏ActionBar" /></LinearLayout>
效果演示如下:
转载请注明出处:http://blog.csdn.net/android_jiangjun/article/details/38230733
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。