TimeLine
Introduction: 时间轴 Android Timeline View is used to display views like Tracking of shipment/order, steppers etc.
Tags:
recyclerview-ItemDecoration-Android Timeline View is used to display views like Tracking of shipment/order, steppers etc.
Use
compile 'com.lin:timeline:1.1@aar'
final TimeLineDecoration decoration = new TimeLineDecoration(this)
.setLineColor(android.R.color.black)
.setLineWidth(1)
.setLeftDistance(16)
.setTopDistance(16)
.setBeginMarker(R.drawable.begin_marker)
.setMarkerRadius(4)
.setMarkerColor(R.color.colorAccent)
.setCallback(new TimeLineDecoration.TimeLineAdapter() {//or new TimeLineDecoration.TimeLineCallback
@Override
public int getTimeLineType(int position) {
if (position == 0) return BEGIN;
else if (position == adapter.getItemCount() - 1) return END_FULL;
else return NORMAL;
}
});
recyclerView.addItemDecoration(decoration);
如果要把时间轴写到 item 中,建议使用
Timeline-View
瀑布流可以使用
TimeLine
ps:demo 中 adpter 使用的库来自PowerAdapter
License
Copyright 2017 lin18
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.