Android中使用開源框架PagerSlidingTabStrip實現導航標題

来源:http://www.cnblogs.com/panhouye/archive/2017/01/15/6288175.html
-Advertisement-
Play Games

此開源框架官網地址:https://github.com/astuetz/PagerSlidingTabStrip 可以理解為配合ViewPager使用的互動式頁面指示器控制項。 話不多說,先上效果圖: 為了演示其中的pstsIndicatorHeight與pstsUnderlineHeight 的區 ...


 此開源框架官網地址:https://github.com/astuetz/PagerSlidingTabStrip

可以理解為配合ViewPager使用的互動式頁面指示器控制項。

話不多說,先上效果圖:

為了演示其中的pstsIndicatorHeight與pstsUnderlineHeight 的區別,進行了不同的設置已區分效果(做了去除actionbar處理)。大家可以很直觀的看出相比之前單獨使用ViewPager以及ViewPager與Fragement嵌套,本次演示PagerSlidingTabStrip的使用,為頁面導航提供了相對更加絢麗的切換效果,下麵我們就介紹下PagerSlidingTabStrip的使用。

前期相關博文推薦:

Android中Fragment和ViewPager那點事兒

Android中使用ViewPager實現屏幕頁面切換和頁面輪播效果

一、基本屬性介紹

·       apstsIndicatorColor //Color of the sliding indicator  滑動條的顏色

·        pstsUnderlineColor //Color of the full-width line onthe bottom of the view  滑動條所在的那個全寬線的顏色

·        pstsDividerColor //Color of the dividers betweentabs   每個標簽的分割線的顏色

·        pstsIndicatorHeight //Height of the sliding indicator      滑動條的高度

·        pstsUnderlineHeight //Height of the full-width line onthe bottom of the view    滑動條所在的那個全寬線的高度

·        pstsDividerPadding //Top and bottom padding of thedividers   分割線底部和頂部的填充寬度

·        pstsTabPaddingLeftRight //Left and right padding of eachtab   每個標簽左右填充寬度

·        pstsScrollOffset //Scroll offset of the selectedtab

·        pstsTabBackground //Background drawable of each tab,should be a StateListDrawable  每個標簽的背景,應該是一個StateListDrawable  

·        pstsShouldExpand //If set to true, each tab isgiven the same weight, default false   如果設置為true,每個標簽是相同的控制項,均勻平分整個屏幕,預設是false

·        pstsTextAllCaps //If true, all tab titles will beupper case, default true   如果為true,所有標簽都是大寫字母,預設為true

所有的屬性都有他們自己的getter和setter方法來隨時改變他們

二、本次演示的代碼結構

三、設置去除ActionBar

在res/values/styles.xml中設置

<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">

 整體xml文件如下:

1 <resources>
2     <!-- Base application theme. -->
3     <style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
4         <!-- Customize your theme here. -->
5         <item name="colorPrimary">@color/colorPrimary</item>
6         <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
7         <item name="colorAccent">@color/colorAccent</item>
8     </style>
9 </resources>

四、導依賴包

使用AndroidStudio2.2。仍然採用在build.gradle下中dependencies下直接添加如下代碼:

1 compile 'com.astuetz:pagerslidingtabstrip:1.0.1'

五、layout佈局文件

佈局前對顏色做了一些引用設置,res/values/colors.xml文件如下:

 1 <?xml version="1.0" encoding="utf-8"?>
 2 <resources>
 3     <color name="colorPrimary">#3F51B5</color>
 4     <color name="colorPrimaryDark">#303F9F</color>
 5     <color name="colorAccent">#FF4081</color>
 6 
 7     <color name="color_theme">#489cfa</color>
 8     <color name="transparent">#00000000</color>
 9     <color name="yellow">#fc9630</color>
10 </resources>

(1)主佈局文件activity_main.xml

PagerSlidingTabStrip配合ViewPager一起使用,本次將ViewPager放置在PagerSlidingTabStrip下麵,具體佈局文件如下(大家根據前文中的屬性解釋來對照不理解的屬性,註意添加app命名空間):

 1 <?xml version="1.0" encoding="utf-8"?>
 2 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
 3     xmlns:tools="http://schemas.android.com/tools"
 4     xmlns:app="http://schemas.android.com/apk/res-auto"
 5     android:id="@+id/activity_main"
 6     android:layout_width="match_parent"
 7     android:layout_height="match_parent"
 8     tools:context="com.mly.panhouye.pagerslidingtabstripdemo.MainActivity">
 9     <com.astuetz.PagerSlidingTabStrip
10         android:id="@+id/pst"
11         android:layout_width="match_parent"
12         android:layout_height="48dip"
13         android:background="@color/color_theme"
14         app:pstsShouldExpand="true"
15         app:pstsTabBackground="@color/transparent"
16         app:pstsIndicatorHeight="5dp"
17         app:pstsIndicatorColor="@color/yellow"
18         app:pstsTextAllCaps="false"
19         app:pstsUnderlineHeight="15dp"
20     />
21     <android.support.v4.view.ViewPager
22         android:id="@+id/pager"
23         android:layout_width="match_parent"
24         android:layout_height="match_parent"
25         android:layout_below="@+id/pst"/>
26 </RelativeLayout>

(2)對應的Fragment佈局文件

本次僅演示簡單效果,fragment_pan, fragment_hou, fragment_ye每個佈局文件僅僅文字不同,這裡僅演示其中一個fragment_pan.xml:

 1 <?xml version="1.0" encoding="utf-8"?>
 2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
 3     android:orientation="vertical" android:layout_width="match_parent"
 4     android:layout_height="match_parent">
 5     <TextView
 6         android:layout_width="match_parent"
 7         android:layout_height="match_parent"
 8         android:gravity="center"
 9         android:text="潘"
10         android:textSize="100sp"
11         />
12 </LinearLayout>

(3)每個fragment要用來填充對應的fragment類,演示ragment_pan.xml佈局對應的fragmen類HouFragment.java:

 1 package com.mly.panhouye.pagerslidingtabstripdemo;
 2 
 3 import android.os.Bundle;
 4 import android.support.v4.app.Fragment;
 5 import android.view.LayoutInflater;
 6 import android.view.View;
 7 import android.view.ViewGroup;
 8 /**
 9  * Created by panchengjia on 2017/1/15 0015.
10  */
11 public class HouFragment extends Fragment {
12     @Override
13     public View onCreateView(LayoutInflater inflater, ViewGroup container,  Bundle savedInstanceState) {
14         View view =inflater.inflate(R.layout.fragment_hou,null);
15         return view;
16     }
17 }

六、Java實現代碼

 1 package com.mly.panhouye.pagerslidingtabstripdemo;
 2 
 3 import android.os.Bundle;
 4 import android.support.v4.app.Fragment;
 5 import android.support.v4.app.FragmentManager;
 6 import android.support.v4.app.FragmentPagerAdapter;
 7 import android.support.v4.view.ViewPager;
 8 import android.support.v7.app.AppCompatActivity;
 9 import com.astuetz.PagerSlidingTabStrip;
10 import java.util.ArrayList;
11 
12 public class MainActivity extends AppCompatActivity {
13     PagerSlidingTabStrip pst;
14     ViewPager viewPager;
15     ArrayList<Fragment> fragments;
16     //聲明pst的標題
17     String[] titles  = {"潘","侯","爺"};
18     @Override
19     protected void onCreate(Bundle savedInstanceState) {
20         super.onCreate(savedInstanceState);
21         setContentView(R.layout.activity_main);
22         pst= (PagerSlidingTabStrip) findViewById(R.id.pst);
23         viewPager= (ViewPager) findViewById(R.id.pager);
24 
25         fragments = new ArrayList<>();
26         HouFragment houFragment = new HouFragment();
27         PanFragment panFragment = new PanFragment();
28         YeFragment yeFragment = new YeFragment();
29         //添加fragment到集合中時註意順序
30         fragments.add(panFragment);
31         fragments.add(houFragment);
32         fragments.add(yeFragment);
33         FragmentManager fragmentManager = getSupportFragmentManager();
34         viewPager.setAdapter(new MyPagerAdapter(fragmentManager,titles,fragments));
35         viewPager.setCurrentItem(0);
36         //當ViewPager的onPagerChangeListener回調時,PagerSlidingTabStrip也一起隨之變動
37         //具體做法都已封裝到了PagerSlidingTabStrip.setViewPager()方法里,使用時調用實例如下
38         pst.setViewPager(viewPager);
39         pst.setTextSize(30);
40     }
41 
42     /**
43      * 自定義適配器
44      */
45     class MyPagerAdapter extends FragmentPagerAdapter {
46         private String[] titles;
47         ArrayList<Fragment> fragments;
48         //根據需求定義構造方法,方便外部調用
49         public MyPagerAdapter(FragmentManager fm, String[] titles, ArrayList<Fragment> fragments) {
50             super(fm);
51             this.titles = titles;
52             this.fragments = fragments;
53         }
54         //設置每頁的標題
55         @Override
56         public CharSequence getPageTitle(int position) {
57             return titles[position];
58         }
59         //設置每一頁對應的fragment
60         @Override
61         public Fragment getItem(int position) {
62             return fragments.get(position);
63         }
64         //fragment的數量
65         @Override
66         public int getCount() {
67             return fragments.size();
68         }
69     }
70 }

本次僅僅演示的是PagerSlidingTabStrip最最基本的使用方法,大家可以嘗試使用它搞出更加絢麗的切換效果,乾吧。


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 從這裡開始是UI篇 知識點: 1.常用IOS基本控制項 2.UITouch 常用基本控制項 1.UISegmentedControl:分段控制器 1)創建方式 - (id)initWithItems:(NSArray *)items; items數組中可以有NSString或者是UIImage對象 UI ...
  • MarkDown 一種用於寫作的輕量級【標記語言】。它用簡潔的語法代替排版,而不像一般的文字處理軟體 Word 或者 Pages 有大量的排版、字體設置等。 如果你對文章的樣式沒有太多要求,只註重寫文章本身的話 MarkDown 將會是一個不錯的選擇。 一、 工具 支持 MarkDown 寫作的軟體 ...
  • 一直不想升級Xcode,但是沒辦法項目進度只能升級Xcode8,果然不出所料出現了不少bug, Xcode7運行一直沒有問題,但是在Xcode8上一直輸出AQDefaultDevice (173): skipping input stream 網上查到解決辦法 1.選擇 Product -->Sch ...
  • 假如下麵的一張圖片,是用來做按鈕的背景圖片的,原始尺寸是76 × 40 我們通過代碼將這張圖片設置為按鈕的背景圖片,假如我們將創建好的按鈕的寬高設置為:(W=200, H=50)代碼如下: 結果如下:圖片被拉伸了。 原因分析:是將原是尺寸為76 × 40 的圖片拉伸成了W=200, H=50;解決方 ...
  • 自定義彈框 效果 特點 1.可以定製彈框的樣式和內容。 2.例子中寫了三種不同的彈框樣式,可根據需求增加彈窗樣式。 用法 1.將父類文件夾中的文件拖入自己的工程中,然後定製自己需要的彈窗。(代碼中寫了三個形式彈窗,大家可參考例子編寫自己需要的形式) 2.定製的彈窗都得繼承這個父類,並實現它的方法。 ...
  • 最近在做下拉框,本來想用spinner,可是spinner達不到項目要求,跟同學同事問了一圈,都在用popwindow, 網上看了一下,popwindow挺簡單的,可定製性挺強的,符合我的要求,所以,借鑒網上看的代碼,自己擼了一 遍。寫篇博客以防忘記。 首先,先寫個自定義佈局,代碼如下 <?xml ...
  • 這裡是放代碼的地方嗎? ...
  • 設計師很多時候會有一像素線的需求,怎麼去實現有下麵幾種方法。 一、 Image 1. 資源圖片 找設計師要個圖片,用UIImageView 或者 CALayer的方式顯示出來 2. CoreGraphics繪製 用CoreCraphics的方式畫一個 UIImage,然後用1的方法展示出來 此類方法 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...