Android官方教程翻译(5)——设置ActionBar
Setting Up the Action Bar
设置Action Bar
THIS LESSONTEACHES YOU TO
这节课教你
1. Support Android 3.0 and Above Only仅仅支持3.0以上
2. Support Android 2.1 and Above 支持2.1以上
YOU SHOULD ALSOREAD
· Setting Up the Support Library
In its most basic form, the action bardisplays the title for the activity and the app icon on the left. Even in thissimple form, the action bar is useful for all activities to inform users aboutwhere they are and
to maintain a consistent identity for your app.
Action Bar最常见的形式是在左边显示标题和应用的图标。尽管很简单,但是很常见很有用,用他去显示用户登陆信息和身份。
Figure 1. An action bar with the app icon andactivity title.
Setting up a basic action bar requiresthat your app use an activity theme that enables the action bar. How to requestsuch a theme depends on which version of Android is the lowest supported byyour app. So this lesson
is divided into two sections depending on whichAndroid version is your lowest supported.
建立一个最基本的action bar需要一个可用主题的activity。怎样去获得这个主题依赖于Android程序的版本。所以这节课根据最低版本分为两个部分。
Support Android3.0 and Above Only
Beginning with Android 3.0 (API level11), the action bar is included in all activities that use the Theme.Holotheme
(or one of its descendants), whichis the default theme when either the targetSdkVersion orminSdkVersion attribute
is set to "11" or greater.
So to add the action bar to youractivities, simply set either attribute to 11 or
higher. For example:
Android3.0版本已经默认启用了Action Bar,因此只要版本高于“11”那么默认就会启动Action
Bar
例如下面配置。
<manifest ...
>
<uses-sdk android:minSdkVersion="11" ...
/>
...
</manifest>
Note: If you've created a custom theme, besure it uses one of the Theme.Holo themes
as its parent. For details, see Styling theAction Bar.
Now the Theme.Holo theme
is applied to your app and allactivities show the action bar. That's it.
Support Android2.1 and Above
Adding the action bar when running on versionsolder than Android 3.0 (down to Android 2.1) requires that you include theAndroid Support Library in your application.
如果你是2.1以上3.0以下则需要下载支持的jar包。
To get started, read the Support LibrarySetup document
and set up the v7appcompat library (once you've downloaded the library package, follow theinstructions for Adding
librarieswith resources).
Once you have the Support Libraryintegrated with your app project:
如果你的工程支持该库:
1. Update your activity so that it extends ActionBarActivity.
For example:
让activity继承ActionBarActivity
public
class MainActivity
extends ActionBarActivity
{ ... }
2. In your manifest file, update either the <application> element
or individual <activity> elements
to use one of the Theme.AppCompat themes.
For example:
在manifest文件中更改<application>元素或有一个<activity>元素使用Theme.AppCompat主题。例如:
<activity
android:theme="@style/Theme.AppCompat.Light" ...
>
Note: If you've created a custom theme, besure it uses one of the Theme.AppCompat themes
as its parent. For details, see Styling theAction Bar.
Now your activity includes the actionbar when running on Android 2.1 (API level 7) or higher
现在你的activity包含action bar当Android版本高于2.1
Remember to properly set your app's APIlevel support in the manifest:
记得去设置API级别支持action bar
<manifest ...
>
<uses-sdk android:minSdkVersion="7" android:targetSdkVersion="18"
/>
...
</manifest>
如果希望关闭ActionBar可以设置该应用的主题为,Xxx.NoActionBar
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/Theme.holo.NoAction" >
<activity
android:name="com.example.test.MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
一旦关闭ActionBar该不能使用
实际的项目中,通常推荐使用代码来控制ActionBar的显示和影藏,ActionBar提供了如下方法:
show():显示
hide()影藏
package com.example.test; import android.app.ActionBar;
import android.app.Activity;
import android.os.Bundle;
import android.view.View; public class MainActivity extends Activity {
ActionBar actionBar;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
//获取该Activity的ActionBar
//只有当应用主题没有关闭ActionBar时,该代码才能返回ActionBar
actionBar = getActionBar();
} //为“显示ActionBar”按钮定义事件处理方法
public void showActionBar(View source){
//显示
actionBar.show();
} //为“隐藏ActionBar"按钮定义事件处理方法
public void hideActionBar(View source){
//隐藏
actionBar.hide();
}
}
Android官方教程翻译(5)——设置ActionBar的更多相关文章
- Android官方教程翻译(6)——添加ActionBar
The action bar allows you to add buttons for the most important action items relating to the app's c ...
- Android官方教程翻译(4)——启动另一个Activity
Starting Another Activity 启动另一个Activity PREVIOUSNEXT THIS LESSON TEACHES YOU TO 这节课教你 1. Respond t ...
- Android官方教程翻译(1)——创建第一个Android应用
转载请注明出处:http://blog.csdn.net/dawanganban/article/details/9822431 Building Your First App GETSTARTED ...
- Android官方教程翻译(3)——创建一个简单的用户界面
转载请注明出处:http://blog.csdn.net/dawanganban/article/details/9839523 Building a Simple User Interface 创建 ...
- Android官方教程翻译(2)——运行第一个程序
转载请注明出处:http://blog.csdn.net/dawanganban/article/details/9823623 Running Your App PREVIOUSNEXT THIS ...
- c# MongoDB Driver 官方教程翻译
先贴官方文档地址:http://mongodb.github.io/mongo-csharp-driver/2.5/getting_started/quick_tour/ 安装部分很简单,nuget搜 ...
- Pytest权威教程(官方教程翻译)
Pytest权威教程01-安装及入门 Pytest权威教程02-Pytest 使用及调用方法 Pytest权威教程03-原有TestSuite的执行方法 Pytest权威教程04-断言的编写和报告 P ...
- android 官方教程地址和一个中文教程
https://developer.android.google.cn/guide/components/fundamentals http://www.runoob.com/w3cnote/andr ...
- android 官方教程中文版
感谢这些默默奉献的人 :) https://github.com/kesenhoo/android-training-course-in-chinese http://hukai.me/android ...
随机推荐
- (转)c++ 中的using namespace std是什么意思,什么时候用
使用std命名空间 98年以后的c++语言提供一个全局的命名空间namespace,可以避免导致全局命名冲突问题.举一个实例,请注意以下两个头文件: // one.hchar func(char);c ...
- element ui源码解析 -- button篇
要看源码就得从最简单的开始,button够简单的了,就从他开始吧. 安装依赖后源码目录在:node_modules/element-ui/packages中,可以看到这里的文件夹命名是不是很熟悉,就是 ...
- VS无法访问IIS元数据库 您没有足够的特权访问计算机上的IIS网站
进入windows\regedit.exe下的HKEY_CRRENT_USER\Software\Microsoft\Windows\CurrentVersion\Exploer\User Shell ...
- PHP unlink() 函数(删除文件)
PHP unlink() 函数(删除文件) 一.总结 unlink() 函数删除文件. 1.实例 $file = "test.txt"; if (!unlink($file)) 2 ...
- or小计
1.使用or的时候,必须养成两边添加括号,否则结果完全不一样. 2.or条件如果复杂的情况下,可以适当考虑union all改写.
- 洛谷 P3871 中位数
->题目链接 题解: 暴力 经鉴定,此题数据水到没朋友. #include<algorithm> #include<iostream> #include<cstdi ...
- MapReduce 图解流程
Anatomy of a MapReduce Job In MapReduce, a YARN application is called a Job. The implementation of t ...
- 项目中使用Prism框架
Prism框架在项目中使用 回顾 上一篇,我们介绍了关于控件模板的用法,本节我们将继续说明WPF更加实用的内容,在大型的项目中如何使用Prism框架,并给予Prism框架来构建基础的应用框架,并且 ...
- 【solr专题之四】关于VelocityResponseWriter 分类: H4_SOLR/LUCENCE 2014-07-22 12:32 1639人阅读 评论(0) 收藏
一.关于Velocity的基本配置 在Solr中,可以以多种方式返回搜索结果,如单纯的文本回复(XML.JSON.CSV等),也可以返回velocity,js等格式.而VelocityResponse ...
- 单选框radio改变事件详解(用的jquery的radio的change事件)
单选框radio改变事件详解(用的jquery的radio的change事件) 一.总结 1.用的jquery的radio的change事件:当元素的值发生改变时,会发生 change 事件,radi ...