Skip to content
/ TimeLine Public

时间轴Android Timeline View is used to display views like Tracking of shipment/order, steppers etc.

Notifications You must be signed in to change notification settings

lin18/TimeLine

Repository files navigation

TimeLine

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.

About

时间轴Android Timeline View is used to display views like Tracking of shipment/order, steppers etc.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages