ActionBar与Facebook应用完全一样

时间:2014-04-07 14:37:33

标签: android android-actionbar actionbarsherlock android-holo-everywhere holoeverywhere

我想构建一个与fb完全相同的单行操作栏,其中选项卡以操作栏的形式嵌入到操作栏中,以便在用户滑动页面时突出显示下一个图标。

我正在使用HoloEverywhere lib,它在内部使用actionbarsherlock。我知道动作栏自定义视图,但无法弄清楚如何在自定义视图中嵌入标签。 请帮忙 。如果可能,请分享代码示例

提前致谢

enter image description here

1 个答案:

答案 0 :(得分:0)

只需创建一个看起来像Facebook操作栏的xml布局,然后执行以下操作:

ActionBar action = getSupportActionBar();
LayoutInflater inflater = getLayoutInflater();
View view = inflater.inflate(R.layout.your_header_xml, null);
action.setCustomView(view);

你只需要制作xml,然后就可以显示了。