如何实现android 侧边栏博客
展开全部
Tab可以设置自定义的View,Actionbar上也可以设置自定义的View.
1//Actionbar Tab设置自定义组件
2getActionBar().newTab().setCustomView();
3//ActionBar 设置自定义组件
4LayoutParams lp = new LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT, Gravity.RIGHT | Gravity.CENTER_VERTICAL);
5View customNav = LayoutInflater.from(this).inflate
6(R.layout.img, null); // layout which contains your button.
actionBar.setCustomView(customNav, lp);
7actionBar.setDisplayShowCustomEnabled(true);
1//Actionbar Tab设置自定义组件
2getActionBar().newTab().setCustomView();
3//ActionBar 设置自定义组件
4LayoutParams lp = new LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT, Gravity.RIGHT | Gravity.CENTER_VERTICAL);
5View customNav = LayoutInflater.from(this).inflate
6(R.layout.img, null); // layout which contains your button.
actionBar.setCustomView(customNav, lp);
7actionBar.setDisplayShowCustomEnabled(true);
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询