Android开源:CoordinatorTabLayout - TabLayout 和 CoordinatorLayout 相结合的折叠控件
sevent
8年前
<h2>CoordinatorTabLayout</h2> <p>CoordinatorTabLayout是一个自定义组合控件,可快速实现TabLayout与CoordinatorLayout相结合的样式 继承至CoordinatorLayout, 在该组件下面使用了CollapsingToolbarLayout包含TabLayout</p> <p style="text-align:center"><img src="https://simg.open-open.com/show/b8713bcea3cc3d4bd377d8b51182fb4f.gif"></p> <h2>用法</h2> <h3>Step 1</h3> <p>在gradle文件中加入下面的依赖:</p> <pre> <code class="language-java">dependencies { compile 'cn.hugeterry.coordinatortablayout:coordinatortablayout:1.0.6' }</code></pre> <h3>Step 2</h3> <p>在你自己的XML中使用它:</p> <pre> <code class="language-java"><cn.hugeterry.coordinatortablayout.CoordinatorTabLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" android:id="@+id/coordinatortablayout" android:layout_width="match_parent" android:layout_height="match_parent"> <android.support.v4.view.ViewPager android:id="@+id/vp" android:layout_width="match_parent" android:layout_height="match_parent" app:layout_behavior="@string/appbar_scrolling_view_behavior" /> </cn.hugeterry.coordinatortablayout.CoordinatorTabLayout></code></pre> <h3>Step 3</h3> <p style="text-align:center"><img src="https://simg.open-open.com/show/8b9436e5a31738ca94bc1108db72e5bf.gif"></p> <p>在使用它的界面添加以下设置:</p> <p>1. setTitle(String title) :设置Toolbar标题</p> <p>2. setupWithViewPager(ViewPager viewPager) :将写好的viewpager设置到该控件当中</p> <p>3. setImageArray(int[] imageArray) :根据tab数量设置好头部的图片数组,并传到该控件当中</p> <pre> <code class="language-java">//构建写好的fragment加入到viewpager中 initFragments(); initViewPager(); //头部的图片数组 mImageArray = new int[]{ R.mipmap.bg_android, R.mipmap.bg_ios, R.mipmap.bg_js, R.mipmap.bg_other}; mCoordinatorTabLayout = (CoordinatorTabLayout) findViewById(R.id.coordinatortablayout); mCoordinatorTabLayout.setTitle("Demo") .setImageArray(mImageArray) .setupWithViewPager(mViewPager);</code></pre> <p>大功告成,好好享用吧</p> <h2>更多功能</h2> <h3>添加折叠后的颜色变化效果</h3> <p style="text-align:center"><img src="https://simg.open-open.com/show/10ae2988362af4262b976a6f59bbd616.gif"></p> <p>setImageArray(int[] imageArray, int[] colorArray) :如果你想要有头部折叠后的颜色变化,可将之前设置好的图片数组以及根据tab数量设置的颜色数组传到该控件当中</p> <pre> <code class="language-java">mColorArray = new int[]{ android.R.color.holo_blue_light, android.R.color.holo_red_light, android.R.color.holo_orange_light, android.R.color.holo_green_light}; mCoordinatorTabLayout.setImageArray(mImageArray, mColorArray);</code></pre> <h3>添加返回</h3> <p>setBackEnable(Boolean canBack) :设置Toolbar的返回按钮</p> <pre> <code class="language-java">@Override protected void onCreate(Bundle savedInstanceState) { ... mCoordinatorTabLayout.setBackEnable(true); ... } @Override public boolean onOptionsItemSelected(MenuItem item) { if (item.getItemId() == android.R.id.home) { finish(); } return super.onOptionsItemSelected(item); }</code></pre> <h3>通过网络加载头部图片</h3> <p>选择用网络来加载图片。可实现以下接口: setLoadHeaderImagesListener(LoadHeaderImagesListener loadHeaderImagesListener) :设置获取头部图片的操作</p> <pre> <code class="language-java">@Override protected void onCreate(Bundle savedInstanceState) { ... mCoordinatorTabLayout.setTitle("Demo") .setBackEnable(true) .setContentScrimColorArray(mColorArray) .setLoadHeaderImagesListener(new LoadHeaderImagesListener() { @Override public void loadHeaderImages(ImageView imageView, TabLayout.Tab tab) { switch (tab.getPosition()) { case 0: //加载图片 break; ... } } }) .setupWithViewPager(mViewPager); }</code></pre> <p>你也可以选择用Glide/Picasso等网络框架来实现</p> <h3>获取子控件</h3> <p>getActionBar() :获取该组件中的ActionBar</p> <p>getTabLayout() :获取该组件中的TabLayout</p> <p>getImageView() :获取该组件中的ImageView</p> <h2>属性</h2> <ul> <li>app:contentScrim -> color.默认为?attr/colorPrimary</li> <li>app:tabIndicatorColor -> color.</li> <li>app:tabTextColor -> color.</li> </ul> <h2>LICENSE</h2> <pre> <code class="language-java">Copyright 2017 HugeTerry. 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.</code></pre> <p> </p> <p> </p>