是否有Android 7的操作栏或其他我可以用作操作栏的东西?我需要建立一个应用程序,这是使用操作栏Android 2.1
JohanNilsson实际上已经创建了一个ActionBar
库,可以在GitHub上使用。
直接联系。
给你。 officeandroid 文章叫做:ActionBarCompat -操作栏兼容性。(以防万一链接永远不能工作)
嗯,你应该试试这个开源项目http://actionbarsherlock.com,你会在这个网站上找到它的完整定义在最新版本中,它将支持ICS提供的功能。
TypedArray a = mActivity.getTheme().obtainStyledAttributes(R.style.AppTheme, new int[] {
R.attr.actionbarCompatItemHomeStyle,
R.attr.actionbarCompatItemStyle
});
int actionbarCompatItemHomeStyle = a.getResourceId(0, 0);
int actionbarCompatItemStyle = a.getResourceId(1, 0);
ImageButton actionButton = new ImageButton(mActivity, null,
itemId == android.R.id.home ? actionbarCompatItemHomeStyle : actionbarCompatItemStyle
);
在pre-Honeycomb版本的Android中,相当于操作栏的是选项菜单,可以在菜单按钮下访问。
2013年7月,Google在新"v7 appcompat library"
中将操作栏兼容性添加回2.1 (7+)http://developer.android.com/tools/support-library/index.html