android tabindicator github,GitHub - nshmura/RecyclerTabLayout: An efficient TabLayout library imple...

RecyclerTabLayout

68747470733a2f2f696d672e736869656c64732e696f2f62616467652f416e64726f6964253230417273656e616c2d52656379636c65725461624c61796f75742d677265656e2e7376673f7374796c653d666c6174

An efficient TabLayout library implemented with RecyclerView.

Features

Efficient when having many tabs

Easy setup with ViewPager (same as TabLayout of Android Design Support Library)

RTL layout support

UseCase

Many tabs layout

Infinite loop scrolling (imitated)

Demos

0304b0c434ab751cb80b54d3a2784be4.gif

c61af450ee710897ad3bf3060b9f271e.gif

d1413f45c13e7d8f7ef4957c37e16b4e.gif

0d1ce3652b05883f3ba86e8a670e5d1d.gif

Samples

f0869368cdc99558a04508dfe0488788.png

Getting started

In your build.gradle:

repositories {

jcenter()

}

dependencies {

compile 'com.nshmura:recyclertablayout:1.5.0'

}

Define RecyclerTabLayout in xml layout with custom attributes.

android:id="@+id/recycler_tab_layout"

android:layout_width="match_parent"

android:layout_height="48dp"

rtl_tabIndicatorColor="?attr/colorAccent"

rtl_tabIndicatorHeight="2dp"

rtl_tabBackground="?attr/selectableItemBackground"

rtl_tabTextAppearance="@android:style/TextAppearance.Small"

rtl_tabSelectedTextColor="?android:textColorPrimary"

rtl_tabMinWidth="72dp"

rtl_tabMaxWidth="264dp"

rtl_tabPaddingStart="12dp"

rtl_tabPaddingTop="0dp"

rtl_tabPaddingEnd="12dp"

rtl_tabPaddingBottom="0dp"

rtl_tabPadding="0dp"/>

Set up with the ViewPager.

ViewPager viewPager = (ViewPager) findViewById(R.id.view_pager);

viewPager.setAdapter(adapter);

RecyclerTabLayout recyclerTabLayout = (RecyclerTabLayout) findViewById(R.id.recycler_tab_layout);

recyclerTabLayout.setUpWithViewPager(viewPager);

Or set up with ViewPager and Custom RecyclerView.Adapter that's extends RecyclerTabLayout.Adapter.

ViewPager viewPager = (ViewPager) findViewById(R.id.view_pager);

viewPager.setAdapter(adapter);

RecyclerTabLayout recyclerTabLayout = (RecyclerTabLayout) findViewById(R.id.recycler_tab_layout);

recyclerTabLayout.setUpWithAdapter(new CustomRecyclerViewAdapter(viewPager));

Here's sample of custom RecyclerView adapter.

public class CustomRecyclerViewAdapter extends RecyclerTabLayout.Adapter {

public DemoCustomView01Adapter(ViewPager viewPager) {

super(viewPager);

...

}

@Override

public ViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {

// Inflate your view.

View view = ...;

return new ViewHolder(view);

}

@Override

public void onBindViewHolder(ViewHolder holder, int position) {

// Bind data

...

if (position == getCurrentIndicatorPosition()) {

//Highlight view

}

}

public class ViewHolder extends RecyclerView.ViewHolder {

...

public ViewHolder(View itemView) {

super(itemView);

...

}

}

}

Attributes

attr

description

rtl_tabIndicatorColor

Indicator color

rtl_tabIndicatorHeight

Indicator height

rtl_tabBackground

Background drawable of each tab

rtl_tabTextAppearance

TextAppearence of each tab

rtl_tabSelectedTextColor

Text color of selected tab

rtl_tabOnScreenLimit

The number of OnScreen tabs. If this value is larger than 0, rtl_tabMinWidth and rtl_tabMaxWidth are ignored.

rtl_tabMinWidth

Minimum width of each tab

rtl_tabMaxWidth

Maximum width of each tab

rtl_tabPaddingStart

The padding of the start edge of each tab

rtl_tabPaddingTop

The padding of the top edge of each tab

rtl_tabPaddingEnd

The padding of the end edge of each tab

rtl_tabPaddingBottom

The padding of the bottom edge of each tab

rtl_tabPadding

The padding of all four edges of each tab

rtl_scrollEnabled

Sets whether tab scrolling is enabled

Thanks

The demo app uses the following resources.

License

Copyright (C) 2017 nshmura

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.

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值