永发信息网

Android 目前最流行的 底部导航栏 用什么做的

答案:2  悬赏:50  手机版
解决时间 2021-03-08 21:33
  • 提问者网友:别再叽里呱啦
  • 2021-03-07 23:25
Android 目前最流行的 底部导航栏 用什么做的
最佳答案
  • 五星知识达人网友:鸽屿
  • 2021-03-07 23:44
很多android应用底部都有一个底部导航栏,方便用户在使用过程中随意切换。目前常用的做法有三种:一种是使用自定义tabHost,一种是使用activityGroup,一种是结合FrameLayout实现。笔者再做了多款应用后,为了节约开发周期,封装了一个抽象类,只要三步便可完成底部栏的生成及不同页面的调用。
   public class ActivitycollectiondemoActivity extends ActivityCollection {
  
  @Override
  public void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  //setBottomTabBackground(resId);// 设置底部导航背景图
  @Override
  protected boolean isShowWindowFeature() {
  return true;//设置是否显示title;
  @Override
  protected ListIndicatorInfo> setDrawableCollections() {
  ListIndicatorInfo> IndicatorInfos = new ArrayListIndicatorInfo>();
  IndicatorInfo indicatorInfo_1 = new IndicatorInfo(R.drawable.baby1,
  R.drawable.baby1_s, R.string.baby1, 12, Color.WHITE,
  new Intent(ActivitycollectiondemoActivity.this,
  Activity01.class));
  IndicatorInfo indicatorInfo_2 = new IndicatorInfo(R.drawable.baby2,
  R.drawable.baby2_s, R.string.baby2, 12, Color.WHITE,
  new Intent(ActivitycollectiondemoActivity.this,
  Activity02.class));
  IndicatorInfo indicatorInfo_3 = new IndicatorInfo(R.drawable.baby3,
  R.drawable.baby3_s, R.string.baby3, 12, Color.WHITE,
  new Intent(ActivitycollectiondemoActivity.this,
  Activity03.class));
  IndicatorInfo indicatorInfo_4 = new IndicatorInfo(R.drawable.baby4,
  R.drawable.baby4_s, R.string.baby4, 12, Color.WHITE,
  new Intent(ActivitycollectiondemoActivity.this,
  Activity04.class));
  IndicatorInfos.add(indicatorInfo_1);
  IndicatorInfos.add(indicatorInfo_2);
  IndicatorInfos.add(indicatorInfo_3);
  IndicatorInfos.add(indicatorInfo_4);
  return IndicatorInfos;

  第一步:导入jar包;
  第二步:让你的homeactivity 继承ActivityCollection类;
  第三步:将你的图片资源及跳转intent放入list中,设置可选项;
雏形就形成啦!
全部回答
  • 1楼网友:十年萤火照君眠
  • 2021-03-08 01:07
tablayout+fragment+radiogroup。看截图:例子来自android学习手册,里面有源码。android学习手册包含9个章节,108个例子,源码文档随便看,例子都是可交互,可运行,源码采用android studio目录结构,高亮显示代码,文档都采用文档结构图显示,可以快速定位。360手机助手中下载,图标上有贝壳
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯