Android自定义指示器时间轴效果实例代码详解

指示器时间轴在外卖、购物类的APP里会经常用到,效果大概就像下面这样,看了网上很多文章,大都是自己绘制,太麻烦,其实通过ListView就可以实现。

在Activity关联的布局文件activity_main.xml中放置一个ListView,代码如下。由于这个列表只是用于展示信息,并不需要用户去点击,所以将其clickable属性置为false;为了消除ListView点击产生的波纹效果,我们设置其listSelector属性的值为透明;我们不需要列表项之间的分割线,所以设置其divider属性的值为null。

activity_main

<ListView
  android:id="@+id/lvTrace"
  android:layout_width="match_parent"
  android:layout_height="wrap_content"
  android:clickable="false"
  android:divider="@null"
  android:dividerHeight="0dp"  android:listSelector="@android:color/transparent" />

每个列表项的布局stepview_adapter.xml,代码如下。由于时间轴的点和线都位于item布局中,为了使线是连续的,所以设置上面ListView的dividerHeight属性值为0dp,即垂直方向每个列表项都是紧挨着的。在item的布局中,我们先使用LinearLayout将布局分成左右两个部分,左边就是时间轴的布局,右边是内容的布局。

内容的布局,物流信息是一个RelativeLayout,为了不使两个列表项的文本靠得太近,在RelativeLayout中设置其paddingBottom和paddingTop属性。

时间轴的布局,时间轴的布局也是一个RelativeLayout,为了使时间轴的圆点和显示时间的文本对齐,我们需要在圆点之上再放置一条竖线,所以整体的布局就是 线 - 点 - 线。为了让线可以正好对准圆点的中心,我们让线和点都水平居中,即android:layout_centerHorizontal="true"

stepview_adapter

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:gravity="center"
  android:orientation="horizontal">
  <RelativeLayout
    android:id="@+id/rlTimeline"
    android:layout_width="wrap_content"
    android:layout_marginLeft="15dp"
    android:layout_height="match_parent">
    <TextView
      android:id="@+id/tvTopLine"
      android:layout_width="1.2dp"
      android:layout_height="12dp"
      android:layout_centerHorizontal="true"
      android:background="#999" />
    <TextView
      android:id="@+id/tvDot"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:layout_below="@id/tvTopLine"
      android:layout_centerHorizontal="true"
      android:background="@drawable/state_get_huankuan" />
    <TextView
      android:layout_width="1.2dp"
      android:id="@+id/tvLine"
      android:layout_height="match_parent"
      android:layout_below="@id/tvDot"
      android:layout_centerHorizontal="true"
      android:background="#999" />
  </RelativeLayout>
  <RelativeLayout
    android:id="@+id/rlCenter"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingBottom="6dp"
    android:paddingRight="10dp"
    android:layout_marginLeft="20dp"
    android:paddingTop="12dp">
    <TextView
      android:id="@+id/step_tv_time"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:layout_alignParentRight="true"
      android:layout_marginRight="6dp"
      android:text="10-20 22:22"
      android:textColor="#cccccc"
      android:textSize="12sp" />
    <TextView
      android:id="@+id/step_tv_des"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:layout_alignParentLeft="true"
      android:layout_marginRight="15dp"
      android:textStyle="bold"
      android:layout_toLeftOf="@+id/step_tv_time"
      android:text="fffffff" />
    <TextView
      android:id="@+id/step_tv_des_below"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:layout_alignParentLeft="true"
      android:layout_below="@+id/step_tv_des"
      android:layout_marginTop="5dp"
      android:text=""
      android:textColor="#999999" />
  </RelativeLayout>
</LinearLayout><br><br><br>

定义一个Adapter,代码如下。由于第一行的物流信息的显示形式和其他的不一样,所以要注意第一行的item的时间轴布局中最上面的线不显示

public class StepViewAdapter extends BaseAdapter {
  private Context context;
  private List<StepViewBean> traceList = new ArrayList<>();
  private static final int TYPE_FINISH = 101;
  private static final int TYPE_UNFINISH = 102;
  private static final int TYPE_ERROR = 103;
  public StepViewAdapter(Context context, List<StepViewBean> traceList) {
    this.context = context;
    this.traceList = traceList;
  }
  @Override
  public int getCount() {
    return traceList.size();
  }
  @Override
  public StepViewBean getItem(int position) {
    return traceList.get(position);
  }
  @Override
  public long getItemId(int position) {
    return position;
  }
  @Override
  public View getView(int position, View convertView, ViewGroup parent) {
    ViewHolder holder;
    final StepViewBean trace = getItem(position);
    if (convertView != null) {
      holder = (ViewHolder) convertView.getTag();
    } else {
      holder = new ViewHolder();
      convertView = LayoutInflater.from(context).inflate(R.layout.stepview_adapter, parent, false);
      holder.tvTopLine = (TextView) convertView.findViewById(R.id.tvTopLine);
      holder.tvDot = (TextView) convertView.findViewById(R.id.tvDot);
      holder.tvLine = (TextView) convertView.findViewById(R.id.tvLine);
      holder.tvAcceptStation = (TextView) convertView.findViewById(R.id.step_tv_des);
      holder.tvAcceptTime = (TextView) convertView.findViewById(R.id.step_tv_time);
      holder.tvAcceptStationBelow = (TextView) convertView.findViewById(R.id.step_tv_des_below);
      holder.rlTimeline = (RelativeLayout) convertView.findViewById(rlTimeline);
      convertView.setTag(holder);
    }
    if (position == 0) {
      holder.tvTopLine.setVisibility(View.INVISIBLE);
    }
    if (position == traceList.size() - 1) {
      holder.tvLine.setVisibility(View.GONE);
    } else {
      holder.tvLine.setVisibility(View.VISIBLE);
    }
    switch (getItemViewType(position)) {
      case TYPE_FINISH:
        holder.tvAcceptStation.setTextColor(context.getResources().getColor(R.color.crt_completed));
        holder.tvDot.setBackgroundResource(R.drawable.state_get_huankuan);
        holder.tvLine.setBackgroundColor(context.getResources().getColor(R.color.crt_completed));
        holder.tvTopLine.setBackgroundColor(context.getResources().getColor(R.color.crt_completed));
        break;
      case TYPE_UNFINISH:
        holder.tvAcceptStation.setTextColor(context.getResources().getColor(R.color.crt_uncompleted_text));
        holder.tvDot.setBackgroundResource(R.drawable.state_normal_huankuan);
        holder.tvLine.setBackgroundColor(context.getResources().getColor(R.color.crt_text_hint_color));
        break;
      case TYPE_ERROR:
        holder.tvTopLine.setVisibility(View.VISIBLE);
        holder.tvAcceptStation.setTextColor(context.getResources().getColor(R.color.crt_error_text));
        holder.tvDot.setBackgroundResource(R.drawable.state_lose_huankuan);
        break;
    }
    holder.tvAcceptTime.setText(trace.getAcceptTime());
    holder.tvAcceptStation.setText(trace.getAcceptStation());
    if (!TextUtils.isEmpty(trace.getAcceptStation())) {
      holder.tvAcceptStationBelow.setText(trace.getAcceptStationBelow());
    }
    return convertView;
  }
  @Override
  public int getItemViewType(int id) {
     if(id==(traceList.size()-2)){
       return TYPE_ERROR;
     }
     if(id==(traceList.size()-1)){
       return TYPE_UNFINISH;
     }
     return TYPE_FINISH;
  }
  static class ViewHolder {
    public TextView tvAcceptTime, tvAcceptStation, tvLine, tvAcceptStationBelow;
    public TextView tvTopLine, tvDot;
    public RelativeLayout rlTimeline;
  }
}

为了可以看到布局的效果,在Activity中模拟一些假数据。需要定义一个实体类Trace,它有两个属性,acceptTime和acceptStation,代码如下:

StepViewBean

public class StepViewBean {
  /** 时间 */
  private String acceptTime;
  /** 描述 */
  private String acceptStation;
  /** 描述下方*/
  private String acceptStationBelow;
  public String getAcceptStationBelow() {
    return acceptStationBelow;
  }
  public void setAcceptStationBelow(String acceptStationBelow) {
    this.acceptStationBelow = acceptStationBelow;
  }
  public StepViewBean() {
  }
  public StepViewBean(String acceptTime, String acceptStation) {
    this.acceptTime = acceptTime;
    this.acceptStation = acceptStation;
  }
  public StepViewBean(String acceptTime, String acceptStation, String acceptStationBelow) {
    this.acceptTime = acceptTime;
    this.acceptStation = acceptStation;
    this.acceptStationBelow = acceptStationBelow;
  }
  public String getAcceptTime() {
    return acceptTime;
  }
  public void setAcceptTime(String acceptTime) {
    this.acceptTime = acceptTime;
  }
  public String getAcceptStation() {
    return acceptStation;
  }
  public void setAcceptStation(String acceptStation) {
    this.acceptStation = acceptStation;
  }
} 

MainActivity 

public class MainActivity extends AppCompatActivity {
  private List<StepViewBean> traceList = new ArrayList<>();
  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    ListView lvTrace= (ListView) findViewById(R.id.lvTrace);
    traceList.add(new StepViewBean("10-20 22: 22", "您的订单已打印完毕", "招商银行(9979) 小明\n支付金额  100000"));
    traceList.add(new StepViewBean("10-20 22:22", "您已提交定单,等待系统确认"));
    traceList.add(new StepViewBean("10-20 22:24", "您的订单已拣货完成"));
    traceList.add(new StepViewBean("10-20 22:24", "扫描员已经扫描"));
    traceList.add(new StepViewBean("10-20 22:24", "您的订单已拣货完成"));
    traceList.add(new StepViewBean("10-20 22:24", "感谢你在京东购物,欢迎你下次光临!"));
    StepViewAdapter adapter = new StepViewAdapter(this, traceList);
    lvTrace.setAdapter(adapter);
  }
}

 GitHub地址:https://github.com/peiniwan/StepView

总结

以上所述是小编给大家介绍的Android自定义指示器时间轴效果实例代码详解,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对我们网站的支持!

您可能感兴趣的文章:

  • Android自定义ViewPager指示器
  • Android实现仿网易新闻的顶部导航指示器
  • Android之IphoneTreeView带组指示器的ExpandableListView效果
  • Android之带group指示器的ExpandableListView(自写)
  • Android自定义View实现垂直时间轴布局
  • Android自定义时间轴的实现过程
  • Android控件之使用ListView实现时间轴效果
(0)

相关推荐

  • Android实现仿网易新闻的顶部导航指示器

    我们知道,页面导航器(Navigator)在几乎所有的项目中都会用到,平时大多数时候为了节省时间,都会直接在github上面拿别人的开源项目来用,最近自己在复习自定义View,就尝试封装了一下,源码参考项目PagerSlidingTabStrip 大家先来看一下效果图 基于文字的页面导航器 基于图片的页面导航器 使用方法 主要步骤分为三步 1)在xml文件里面 <com.xujun.viewpagertabindicator.TabPagerIndicator android:id="@+

  • Android自定义ViewPager指示器

    本文实例为大家分享了Android ViewPager指示器的制作方法,供大家参考,具体内容如下 1.概述 ViewPageIndicator这个开源框架大家都接触过,个人感觉还不错就是用起来比较麻烦,需要这里配置那里配置效果定制起来也不方便.我第一次使用的时候就一直出不来效果,后来找了很久发现是activity的主题没有配置好.今天我们自己来造个轮子实现一把,其中用到了Adapter模式,如果不清楚这个模式的请看我的Android源码设计模式分析:http://www.jb51.net/art

  • Android自定义时间轴的实现过程

    本文讲述Android自定义时间轴的实现过程,供大家参考,具体内容如下 相关视频链接: Android自定义控件系列 http://edu.csdn.net/course/detail/3719/65396 Android视频全系列 http://edu.csdn.net/course/detail/2741/43163 时间轴效果,实际上非常简单,就是listView中一个又一个的条目而已-.大家可以只关注一个条目. 首先展示一个条目的布局效果 <?xml version="1.0&qu

  • Android控件之使用ListView实现时间轴效果

     实现思路: 该View是通过ListView实现的,通过实体两个字段内容content和时间time来展示每个ListItem 时间轴是使用上面一条线(20dp)和中间一个圆(15dp)和下面一条线(40dp)组装成的 在ListView中,设置其分割线为空,并且没有点击效果 效果图: 步骤一:使用xml画出一个灰色的圆点(time_cycle.xml) <?xml version="1.0" encoding="utf-8"?> <shape

  • Android之带group指示器的ExpandableListView(自写)

    我们都知道Android缺省的ExpandableListView的group header无法固定在界面上,当向下滚动后,不能对当前显示的那些child 指示出它们归属于哪个group,在网上搜了很多关于仿手机QQ好友分组效果的ExpandableListView,发现都不尽如意,于是乎在别人的基础上改进了一点点,其实原理还是差不多的,只是增加了往上挤出去的动画效果,而且更加简单,只不过还是没有完全到达跟QQ一样的效果,希望有高手能实现更加逼真的效果,下面我们先看看效果图:  我这里没有把Ex

  • Android自定义View实现垂直时间轴布局

    时间轴,顾名思义就是将发生的事件按照时间顺序罗列起来,给用户带来一种更加直观的体验.京东和淘宝的物流顺序就是一个时间轴,想必大家都不陌生,如下图: 分析 实现这个最常用的一个方法就是用ListView,我这里用继承LinearLayout的方式来实现.首先定义了一些自定义属性: attrs.xml <?xml version="1.0" encoding="utf-8"?> <resources> <declare-styleable

  • Android之IphoneTreeView带组指示器的ExpandableListView效果

    之前实现过一次这种效果的ExpandableListView:http://www.jb51.net/article/38482.htm,带效果比较挫,最近,在参考联系人源码PinnedHeaderListView,以及网上各位大侠的源码,封装了一个效果最好,而且使用最简单的IphoneTreeView,下面先看看效果图:  首先让我们看看封装得比较完善的IphoneTreeView: 复制代码 代码如下: public class IphoneTreeView extends Expandab

  • Android自定义指示器时间轴效果实例代码详解

    指示器时间轴在外卖.购物类的APP里会经常用到,效果大概就像下面这样,看了网上很多文章,大都是自己绘制,太麻烦,其实通过ListView就可以实现. 在Activity关联的布局文件activity_main.xml中放置一个ListView,代码如下.由于这个列表只是用于展示信息,并不需要用户去点击,所以将其clickable属性置为false:为了消除ListView点击产生的波纹效果,我们设置其listSelector属性的值为透明:我们不需要列表项之间的分割线,所以设置其divider属

  • Android自定义view实现太极效果实例代码

    Android自定义view实现太极效果实例代码 之前一直想要个加载的loading.却不知道用什么好,然后就想到了太极图标,最后效果是有了,不过感觉用来做loading简直丑到爆!!! 实现效果很简单,我们不要用什么贝塞尔曲线啥的,因为太极无非就是圆圆圆,只要画圆就ok了.来上代码: 因为有黑有白,所以定义2个画笔分别为黑和白. private void inital() { whitePaint = new Paint(); whitePaint.setAntiAlias(true); wh

  • Android自定义view实现圆环效果实例代码

    先上效果图,如果大家感觉不错,请参考实现代码.           重要的是如何实现自定义的view效果 (1)创建类,继承view,重写onDraw和onMesure方法 public class CirclePercentBar extends View{ private Context mContext; private int mArcColor; private int mArcWidth; private int mCenterTextColor; private int mCent

  • Android 倒计时控件 CountDownView的实例代码详解

    一个精简可自定义的倒计时控件,使用 Canvas.drawArc() 绘制.实现了应用开屏页的圆环扫过的进度条效果. 代码见https://github.com/hanjx-dut/CountDownView 使用 allprojects { repositories { ... maven { url 'https://jitpack.io' } } } dependencies { implementation 'com.github.hanjx-dut:CountDownView:1.1'

  • Spinner在Dialog中的使用效果实例代码详解

    背景: 记得很久以前,碰到一个需求场景,需要在Android Dialog中显示Spinner,用来进行选择操作.那个时候还很困惑,不知道是否可以这么搞.抱着试试看的心态,做起了实验,看起来效果还可行,不过最终还是选用了一个开源项目,效果看起来更棒. 代码演示: Spinner在Dialog中的使用,Dialog中关于view的xml布局. <?xml version="1.0" encoding="utf-8"?> <LinearLayout x

  • vue+Element-ui实现分页效果实例代码详解

    当我们向后台请求大量数据的时候,并要在页面展示出来,请求的数据可能上百条数据或者更多的时候,并不想在一个页面展示,这就需要使用分页功能来去完成了. 1.本次所使用的是vue2.0+element-ui实现一个分页功能,element-ui这个组件特别丰富,分页中给我提供了一个Pagination 分页,使用Pagination 快速完成分页功能 最终效果展示 <div class="deit"> <div class="crumbs"> &l

  • js实现弹出框的拖拽效果实例代码详解

    具体代码如下所示: //HTML部分 <div class="wrap"></div> <div class="popUpBox"> <div class="layer-head"><div class="layer-head-text">弹出框</div><div class="layer-close"></div&

  • Android实现图片自动切换功能(实例代码详解)

    在Android中图片的自动切换不仅可以实现自动切换,而且还可以使用手动切换.而且一般在切换的时候,在图片下方还带有其他内容的切换,用来标记是第几个图片的切换. 这种效果在我们日常生活中很常见,例如某宝购物,一些商城都可以使用到,用户体验度极好,今天小编就通过实例代码给大家分享android 图片自动切换功能的实现. 实现效果如下: 具体的示例代码如下: 布局代码: <?xml version="1.0" encoding="utf-8"?> <S

  • Android自定义view系列之99.99%实现QQ侧滑删除效果实例代码详解

    首先声明本文是基于GitHub上"baoyongzhang"的SwipeMenuListView修改而来,该项目地址: https://github.com/baoyongzhang/SwipeMenuListView 可以说这个侧滑删除效果是我见过效果最好且比较灵活的项目,没有之一!!! 但是在使用它之前需要给大家提两点注意事项: 1,该项目支持Gradle dependence,但是目前作者提供的依赖地址对应的项目不是最新的项目,依赖过后的代码与demo中使用的不一致,会提示没有B

  • Android自定义View圆形图片控件代码详解

    前言 在日常开发中,圆形的图片效果还是很常见的.可以通过给Paint设置Xfermode来实现,这里简单记录如下. 实现 实现圆形效果的核心是PorterDuffXfermode,对于PorterDuffXfermode,这里不展开,可以查询相关资料. 核心代码 //绘制背景 canvas.drawCircle(mSize / 2, mSize / 2, mSize / 2, mPaint); //设置模式为:显示背景层和上层的交集,且显示上层图像 mPaint.setXfermode(new

随机推荐