如何使用android studio实现android交付跟踪器

时间:2018-11-14 13:13:27

标签: java android tracking timeline

我想要一个类似下图所示的进度条跟踪器,用于一个Android交付应用程序。

请参见this

1 个答案:

答案 0 :(得分:4)

尝试时间轴视图

以XML

<com.github.vipulasri.timelineview.TimelineView
android:id="@+id/time_marker"
android:layout_width="wrap_content"
android:layout_height="match_parent"
app:markerSize="20dp"
app:lineSize="2dp"
app:line="@color/colorPrimary"
app:linePadding="5dp"/>

RecyclerView支架

  public class TimeLineViewHolder extends RecyclerView.ViewHolder {
    public  TimelineView mTimelineView;

    public TimeLineViewHolder(View itemView, int viewType) {
        super(itemView);
        mTimelineView = (TimelineView) itemView.findViewById(R.id.time_marker);
        mTimelineView.initLine(viewType);
    }
}

有关完整实现,请查看this