- Notifications
You must be signed in to change notification settings - Fork16
lin18/TimeLine
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
Android Timeline View is used to display views like Tracking of shipment/order, steppers etc.
compile'com.lin:timeline:1.1@aar'
finalTimeLineDecorationdecoration =newTimeLineDecoration(this) .setLineColor(android.R.color.black) .setLineWidth(1) .setLeftDistance(16) .setTopDistance(16) .setBeginMarker(R.drawable.begin_marker) .setMarkerRadius(4) .setMarkerColor(R.color.colorAccent) .setCallback(newTimeLineDecoration.TimeLineAdapter() {//or new TimeLineDecoration.TimeLineCallback@OverridepublicintgetTimeLineType(intposition) {if (position ==0)returnBEGIN;elseif (position ==adapter.getItemCount() -1)returnEND_FULL;elsereturnNORMAL; } });recyclerView.addItemDecoration(decoration);
如果要把时间轴写到item中,建议使用
Timeline-View
瀑布流可以使用
TimeLine
ps:demo中adpter使用的库来自PowerAdapter
Copyright 2017 lin18Licensed 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.0Unless required by applicable law or agreed to in writing, softwaredistributed 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 andlimitations under the License.