Android 操作栏
我正在寻找 Android 2.1 到 2.3.4 中 ActionBar 的实现,其中我可以动态设置特定活动中操作栏的内容以及单击操作栏中按钮时的操作。
是否有此类开源库,或者有人可以帮助我如何开始构建相同的库。
I am looking for an implementation of the ActionBar in Android 2.1 to 2.3.4 where i can dynamically set the contents of the action bar from the particular activity and also the actions on click of the buttons from the action bar.
Is there any open source lib of this sort or can someone help me how to start on building the same.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
有 ActionBarSherlock 和 android-actionbar< /a>.
There is ActionBarSherlock and android-actionbar.
看看 http://android.cyrilmottier.com/?p=240 - Greendroid 。
如果它不符合您的需求,我建议创建您自己的“小部件”,只需要一些布局并以编程方式膨胀 ActionBar。
Have a look at http://android.cyrilmottier.com/?p=240 - Greendroid.
If it doesn't fit your needs, I suggest creating your own "widget", just need some layouts and inflate the ActionBar programmatically.
这个问题已经有一个公认的答案。但我在 SherlockActionBar 实现方面遇到了一些问题,并进行了更多搜索并发现了这个。我们可以按照 Android 官方给出的官方教程,在 API level 11 以下使用
ActionBar
。从 Android 官方网站阅读本教程。
您只需将
android-sdk-windows\extras\android\support\v7\appcompat\libs
android-support-v7-appcompat.jar 支持 jar 包含在您的项目中即可code> 磁盘上的路径。然后就可以在Android中使用API 11以下的ActionBar了。官方 Android 教程在这里: Action Bar Android 官方< /a> Sherlock 酒吧给我带来了问题,然后我得到了这个解决方案。
This question already has an accepted answer. But I was having some problems with SherlockActionBar implementation and searched more and found this. We can use
ActionBar
below API level 11 following this official tutorial given at official Android.Read this tutorial from Android's official site.
You just need to include
android-support-v7-appcompat.jar
support jar in your project from yourandroid-sdk-windows\extras\android\support\v7\appcompat\libs
path on your disk. Then you can use ActionBar below API 11 in Android.Official Android Tutorial is here: Action Bar Android Official Sherlock bar was creating issues for me then I got this solution.