欢迎来到天天文库
浏览记录
ID:41486208
大小:28.87 KB
页数:5页
时间:2019-08-25
《android实现底部菜单栏》由会员上传分享,免费在线阅读,更多相关内容在应用文档-天天文库。
1、android实现底部菜单栏android程序,许多时候需要菜单栏显示在底部或顶部,但是没有很好的组建供程序员调用,过自定义了一个视图,用来实现底部菜单栏,效果如下图:实现的主要代码:Java代码 1.@Override 2. public void onCreate(Bundle savedInstanceState) { 3. super.onCreate(savedInstanceState); 4. requestWindowFeature(Window.
2、FEATURE_NO_TITLE); 5. setContentView(R.layout.main); 6. 7. linearLayout = (LinearLayout) findViewById(R.id.home); 8. linearLayout.setOnClickListener(new OnClickListener() { 9. @Override 10. public void o
3、nClick(View v) { 11. linearLayout 12. .setBackgroundResource(R.drawable.tab_two_highlight); 13. publish.setBackgroundResource(R.drawable.tab_one_normal); 14. change.setBackgroundRes
4、ource(R.drawable.tab_one_normal); 15. more.setBackgroundResource(R.drawable.tab_one_normal); 16. } 17. }); 1. linearLayout 2. .setBackgroundResource(R.drawable.tab_two_highlight); 3. 4. publ
5、ish = (LinearLayout) findViewById(R.id.publish); 5. publish.setOnClickListener(new OnClickListener() { 6. @Override 7. public void onClick(View v) { 8. publish.setBackgroundResource(R.drawable.tab_two_high
6、light); 9. linearLayout.setBackgroundResource(R.drawable.tab_one_normal); 10. change.setBackgroundResource(R.drawable.tab_one_normal); 11. more.setBackgroundResource(R.drawable.tab_one_normal); 12.
7、 } 13. }); 14. 15. change = (LinearLayout) findViewById(R.id.change); 16. change.setOnClickListener(new OnClickListener() { 17. @Override 18. public void onClick(View v) { 19. change
8、.setBackgroundResource(R.drawable.tab_two_highlight); 20. linearLayout.setBackgroundResource(R.drawable.tab_one_normal); 21. publish.setBackgroundResource(R.drawable.t
此文档下载收益归作者所有