如何使用旧版本的Andr​​oid的动作条

如何使用旧版本的Andr​​oid的动作条

本文介绍了如何使用旧版本的Andr​​oid的动作条?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

可能重复:
  What是动作条在早期的SDK版本的相同呢?

如果我没有记错,Android的指导方针说,你应该使用的动作条的全球导航中的应用程序。

If I'm not mistaken, the Android guidelines say you should use the ActionBar for the global navigation within an app.

但在同一时间,您通常要瞄准最古老的API可能最大的兼容性。

But at the same time, you typically want to target the oldest API possible for maximum compatibility.

我在一个应用程序开始发展,我定下的目标至Android 2.2。

I'm beginning development on an app and I set the target to Android 2.2.

是否有可能在这里使用的操作栏?如果不是这样,我该用什么?

Is it possible to use the action bar here? If not, what do i use?

谢谢凯文

推荐答案

使用 ActionBarSherlock

  • 确保您的项目采用Android 4.0+作为构建目标以及是否有兼容性/支持库增加。 (你可以用鼠标右键单击该项目,选择Android的茨>添加支持库)
  • 下载ActionBarSherlock库项目,并将其导入到Eclipse中。
  • 右键单击您的主项目,选择属性,然后在左侧窗格中选择Android系统。在底部窗口的一半,单击添加按钮,然后选择ActionBarSherlock项目。单击确定。
  • 除了使用常规的活动和片段,您可以使用从夏洛特库的。它们具有相同的名称,但prefixed与大侦探(SherlockActivity,SherlockFragment,等等。)
  • 要访问code中的动作条,你叫 getSupportActionBar()。这将返回无论是常规动作条(适用于蜂窝和更高版本)或大侦探动作条(为pre-蜂窝)。
  • 主题化指令在ActionBarSherlock网站。
  • Make sure your project uses Android 4.0+ as the build target and that you have the compatibility/support library added. (You can right-click the project, select Android Toots > Add Support Library)
  • Download the ActionBarSherlock library project and import it into Eclipse.
  • Right-click your main project, select Properties, and select Android in the left pane. In the bottom half of the window, click the Add button and select the ActionBarSherlock project. Click OK.
  • Instead of using regular Activities and Fragments, you use ones from the Sherlock Library. They have the same names, but prefixed with "Sherlock" (SherlockActivity, SherlockFragment, etc.)
  • To access the actionbar in code, you call getSupportActionBar(). This returns either the regular actionbar (for Honeycomb and later) or the Sherlock actionbar (for pre-Honeycomb).
  • Theming instructions are on the ActionBarSherlock website.

这篇关于如何使用旧版本的Andr​​oid的动作条?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-05 04:54