ViewPager + Fragment 實現類微信界面

来源:http://www.cnblogs.com/xiaojianli/archive/2016/07/14/5671196.html
-Advertisement-
Play Games

在如今的互聯網時代,微信已是一個超級App。這篇通過ViewPager + Fragment實現一個類似於微信的界面,之前有用FragmentTabHost實現過類似界面,ViewPager的實現方式相對於FragmentTabHost的方式更簡單明瞭。 ViewPager: ViewPager繼承 ...


  在如今的互聯網時代,微信已是一個超級App。這篇通過ViewPager + Fragment實現一個類似於微信的界面,之前有用FragmentTabHost實現過類似界面,ViewPager的實現方式相對於FragmentTabHost的方式更簡單明瞭。

ViewPager:

  ViewPager繼承自ViewGroup,是一個容器類,可以往裡添加View.

  ViewPager的使用很簡單,通過setAdapter()方法設置一個PagerAdapter即可,這個PagerAdapter需要自己寫,實現裡面的一些方法。本篇要和Fragment結合,所以實現的是FragmentPagerAdapter類,FragmentPagerAdapter繼承自PagerAdapter.

  ViewPager通過addOnPageChangeListener()方法可以設置一個ViewPager.OnPageChangeListener監聽,當Pager發生變化時就調用相應的方法。

Fragment:

  Fragment有自己的生命周期, 有興趣的可以自己通過各種方式研究下(自己打Log看是最簡單的一種方式),這裡就不在贅述。和ViewPager結合,有幾個Pager就需要實現幾個不同的Fragment.

 

先看一下最後實現的效果圖:

佈局上分為三部分:

  最上面的layout_top.xml,主要就是上面那個標題,就一個TextView,中間的ViewPager,最下麵的layout_bottom.xml包括三個線性佈局,每個線性佈局包括一個ImageView和TextView.

activity_main.xml:

 1 <?xml version="1.0" encoding="utf-8"?>
 2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
 3     xmlns:tools="http://schemas.android.com/tools"
 4     android:layout_width="match_parent"
 5     android:layout_height="match_parent"
 6     android:orientation="vertical"
 7     tools:context="com.example.administrator.viewpagerl.MainActivity">
 8 
 9     <include layout="@layout/layout_top"></include>
10     
11     <android.support.v4.view.ViewPager
12         android:id="@+id/ViewPagerLayout"
13         android:layout_width="match_parent"
14         android:layout_height="match_parent"
15         android:layout_weight="1">
16     </android.support.v4.view.ViewPager>
17 
18     <include layout="@layout/layout_bottom"></include>
19 
20 </LinearLayout>

 layout_top.xml

 1 <?xml version="1.0" encoding="utf-8"?>
 2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
 3     android:orientation="horizontal"
 4     android:layout_width="match_parent"
 5     android:layout_height="wrap_content"
 6     android:paddingTop="3dp"
 7     android:paddingBottom="3dp"
 8     android:background="@android:color/darker_gray">
 9 
10     <TextView
11         android:id="@+id/ViewTitle"
12         android:layout_marginLeft="20dp"
13         android:layout_marginTop="5dp"
14         android:textSize="25sp"
15         android:layout_width="wrap_content"
16         android:layout_height="wrap_content" />
17 
18 </LinearLayout>
View Code

 layout_bottom.xml  

 1 <?xml version="1.0" encoding="utf-8"?>
 2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
 3     android:orientation="horizontal" android:layout_width="match_parent"
 4     android:layout_height="wrap_content"
 5     android:layout_alignParentBottom="true"
 6     android:paddingTop="3dp"
 7     android:paddingBottom="3dp"
 8     android:background="@android:color/holo_green_light">
 9 
10     <LinearLayout
11         android:id="@+id/firstLinearLayout"
12         android:layout_width="wrap_content"
13         android:layout_height="wrap_content"
14         android:orientation="vertical"
15         android:gravity="center_horizontal"
16         android:layout_weight="1">
17         <ImageView
18             android:id="@+id/firstImageView"
19             android:background="@drawable/tab_weixin"
20             android:layout_width="wrap_content"
21             android:layout_height="wrap_content" />
22         <TextView
23             android:id="@+id/firstTextView"
24             android:layout_width="wrap_content"
25             android:layout_height="wrap_content"
26             android:text="微信"
27             />
28     </LinearLayout>
29     <LinearLayout
30         android:id="@+id/secondLinearLayout"
31         android:layout_width="wrap_content"
32         android:layout_height="wrap_content"
33         android:orientation="vertical"
34         android:gravity="center_horizontal"
35         android:layout_weight="1">
36         <ImageView
37             android:id="@+id/secondImageView"
38             android:layout_width="wrap_content"
39             android:layout_height="wrap_content"
40             android:background="@drawable/tab_setting"/>
41         <TextView
42             android:id="@+id/secondTextView"
43             android:layout_width="wrap_content"
44             android:layout_height="wrap_content"
45             android:text="朋友"
46             />
47     </LinearLayout>
48     <LinearLayout
49         android:id="@+id/threeLinearLayout"
50         android:layout_width="wrap_content"
51         android:layout_height="wrap_content"
52         android:orientation="vertical"
53         android:gravity="center_horizontal"
54         android:layout_weight="1">
55         <ImageView
56             android:id="@+id/threeImageView"
57             android:layout_width="wrap_content"
58             android:layout_height="wrap_content"
59             android:background="@drawable/tab_find"/>
60         <TextView
61             android:id="@+id/threeTextView"
62             android:layout_width="wrap_content"
63             android:layout_height="wrap_content"
64             android:text="發現"
65             />
66     </LinearLayout>
67 </LinearLayout>
View Code

  上面有提到,ViewPager需要實現一個Pageradapter,很簡單繼承FragmentPagerAdapter,實現裡面的getItem()和getCount()方法即可。

ViewPagerFragmentAdapter .java

 1 package com.example.administrator.viewpagerl;
 2 
 3 import android.support.v4.app.Fragment;
 4 import android.support.v4.app.FragmentManager;
 5 import android.support.v4.app.FragmentPagerAdapter;
 6 import android.util.Log;
 7 
 8 import java.util.ArrayList;
 9 import java.util.List;
10 
11 public class ViewPagerFragmentAdapter extends FragmentPagerAdapter {
12 
13     private List<Fragment> mList = new ArrayList<Fragment>();
14     public ViewPagerFragmentAdapter(FragmentManager fm , List<Fragment> list) {
15         super(fm);
16         this.mList = list;
17     }
18 
19     @Override
20     public Fragment getItem(int position) {
21         return mList.get(position);
22     }
23 
24     @Override
25     public int getCount() {
26         return mList != null ? mList.size() : 0;
27     }
28 }

   ViewPager的每個Pager都需要一個Fragment,Fragment會實例化佈局,顯示在ViewPager的每個Pager中

ChatFragment.java

 1 package com.example.administrator.fragment;
 2 
 3 import android.os.Bundle;
 4 import android.support.annotation.Nullable;
 5 import android.support.v4.app.Fragment;
 6 import android.util.Log;
 7 import android.view.LayoutInflater;
 8 import android.view.View;
 9 import android.view.ViewGroup;
10 import android.widget.TextView;
11 
12 import com.example.administrator.viewpagerl.R;
13 
14 public class ChatFragment extends Fragment {
15 
16     View mView;
17     @Nullable
18     @Override
19     public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
20         if (mView == null) {
21             mView = inflater.inflate(R.layout.fragment_layout,null);
22         }
23         ((TextView)mView.findViewById(R.id.mTextView)).setText("聊天界面");
24         return mView;
25     }
26 }

  這裡需要三個Fragment,因為這裡使用的佈局很簡單,三個佈局基本是一致的,FriendFragmentFindFragment 這裡就都不貼出代碼了。微信裡面的聊天列表,朋友列表都是在Fragment裡面實例化的佈局里有個ListView,通過ListView的方式實現的,這裡只是為了記錄ViewPager就沒有實現那些,有興趣的可以自己搞搞,其實也不難。

  在Activity裡面只需要給ViewPager設置上面那個Adapter,設置一個監聽知道Pager如何變化即可。點擊最下麵微信、朋友、發現三個按鈕,通過ViewPager的setCurrentItem()方法就能跳轉到對應的Pager,除了這些還有就是通過一些簡單的邏輯,控制一下界面的改變就行,沒有太難的東西。

MainActivity.java

  1 package com.example.administrator.viewpagerl;
  2 
  3 import android.support.v4.app.Fragment;
  4 import android.support.v4.app.FragmentManager;
  5 import android.support.v4.view.ViewPager;
  6 import android.support.v7.app.AppCompatActivity;
  7 import android.os.Bundle;
  8 import android.util.Log;
  9 import android.view.View;
 10 import android.widget.LinearLayout;
 11 import android.widget.TextView;
 12 
 13 import com.example.administrator.fragment.ChatFragment;
 14 import com.example.administrator.fragment.FindFragment;
 15 import com.example.administrator.fragment.FriendFragment;
 16 
 17 import java.util.ArrayList;
 18 import java.util.List;
 19 
 20 public class MainActivity extends AppCompatActivity implements View.OnClickListener {
 21 
 22     private static final String TAG = "MainActivity.TAG";
 23     TextView titleTextView;
 24     public LinearLayout firstLinearLayout;
 25     public LinearLayout secondLinearLayout;
 26     public LinearLayout threeLinearLayout;
 27     ViewPager mViewPager;
 28     ViewPagerFragmentAdapter mViewPagerFragmentAdapter;
 29     FragmentManager mFragmentManager;
 30 
 31     String[] titleName = new String[] {"微信","朋友","發現"};
 32     List<Fragment> mFragmentList = new ArrayList<Fragment>();
 33     @Override
 34     protected void onCreate(Bundle savedInstanceState) {
 35         super.onCreate(savedInstanceState);
 36         mFragmentManager = getSupportFragmentManager();
 37         setContentView(R.layout.activity_main);
 38         initFragmetList();
 39         mViewPagerFragmentAdapter = new ViewPagerFragmentAdapter(mFragmentManager,mFragmentList);
 40         initView();
 41         initViewPager();
 42     }
 43 
 44     @Override
 45     protected void onResume() {
 46         super.onResume();
 47     }
 48 
 49     public void initViewPager() {
 50         mViewPager.addOnPageChangeListener(new ViewPagetOnPagerChangedLisenter());
 51         mViewPager.setAdapter(mViewPagerFragmentAdapter);
 52         mViewPager.setCurrentItem(0);
 53         titleTextView.setText(titleName[0]);
 54         updateBottomLinearLayoutSelect(true,false,false);
 55     }
 56 
 57     public void initFragmetList() {
 58         Fragment chat = new ChatFragment();
 59         Fragment friend = new FriendFragment();
 60         Fragment find = new FindFragment();
 61         mFragmentList.add(chat);
 62         mFragmentList.add(friend);
 63         mFragmentList.add(find);
 64     }
 65 
 66     public void initView() {
 67         titleTextView = (TextView) findViewById(R.id.ViewTitle);
 68         mViewPager = (ViewPager) findViewById(R.id.ViewPagerLayout);
 69         firstLinearLayout = (LinearLayout) findViewById(R.id.firstLinearLayout);
 70         firstLinearLayout.setOnClickListener(this);
 71         secondLinearLayout = (LinearLayout) findViewById(R.id.secondLinearLayout);
 72         secondLinearLayout.setOnClickListener(this);
 73         threeLinearLayout = (LinearLayout) findViewById(R.id.threeLinearLayout);
 74         threeLinearLayout.setOnClickListener(this);
 75     }
 76 
 77     @Override
 78     public void onClick(View v) {
 79         switch (v.getId()) {
 80             case R.id.firstLinearLayout:
 81                 mViewPager.setCurrentItem(0);
 82                 updateBottomLinearLayoutSelect(true,false,false);
 83                 break;
 84             case R.id.secondLinearLayout:
 85                 mViewPager.setCurrentItem(1);
 86                 updateBottomLinearLayoutSelect(false,true,false);
 87                 break;
 88             case R.id.threeLinearLayout:
 89                 mViewPager.setCurrentItem(2);
 90                 updateBottomLinearLayoutSelect(false,false,true);
 91                 break;
 92             default:
 93                 break;
 94         }
 95     }
 96     private void updateBottomLinearLayoutSelect(boolean f, boolean s, boolean t) {
 97         firstLinearLayout.setSelected(f);
 98         secondLinearLayout.setSelected(s);
 99         threeLinearLayout.setSelected(t);
100     }
101     class ViewPagetOnPagerChangedLisenter implements ViewPager.OnPageChangeListener {
102         @Override
103         public void onPageScrolled(int position, float positionOffset, int positionOffsetPixels) {
104 //            Log.d(TAG,"onPageScrooled");
105         }
106         @Override
107         public void onPageSelected(int position) {
108             Log.d(TAG,"onPageSelected");
109             boolean[] state = new boolean[titleName.length];
110             state[position] = true;
111             titleTextView.setText(titleName[position]);
112             updateBottomLinearLayoutSelect(state[0],state[1],state[2]);
113         }
114         @Override
115         public void onPageScrollStateChanged(int state) {
116             Log.d(TAG,"onPageScrollStateChanged");
117         }
118     }
119 }

  其實就這麼簡單,只要動動手很容易實現的。有什麼不對的地方,還望大神指點。


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

-Advertisement-
Play Games
更多相關文章
  • ...
  • 槽和普通成員函數一樣,可以是虛函數、被重載,可以是公有、私有、保護的。它可以被其它C++成員函數調用。 槽連接了信號,當發射這個信號時,槽會被自動調用。 連接函數: bool QObject::connect ( const QObject * sender, const char * signal ...
  • 一、概念 生產者與消費者問題是一個金典的多線程協作的問題.生產者負責生產產品,並將產品存放到倉庫;消費者從倉庫中獲取產品並消費。當倉庫滿時,生產者必須停止生產,直到倉庫有位置存放產品;當倉庫空時,消費者必須停止消費,直到倉庫中有產品。 解決生產者/消費者問題主要用到如下幾個技術:1.用線程模擬生產者 ...
  • 1. 從官網下載最新版Python 3.X 後安裝;由於Mac OS X EI Capitan中預設已經集成了 Python 2.7,因此需要在Terminal中輸入 Python3 來檢測是否安裝成功,使用Python命令預設調用的是Python 2.7。 2. 安裝pip;從官網頁面下載get- ...
  • function myBrowser() { var userAgent = navigator.userAgent; //取得瀏覽器的userAgent字元串 var isOpera = userAgent.indexOf("Opera") > -1; //判斷是否Opera瀏覽器 var isI ...
  • 用百度編輯器——Ueditor(版本1.4.3.3,2016-05-18日上線)插入錨點的時候,每次總是失敗,百思不得其解。通過分析Ueditor的代碼ueditor.all.js,可以看出Ueditor插入錨點的過程,實際上是一個img標簽和a標簽相互轉換的過程,其代碼如下: 'anchor':{ ...
  • 主要練習一下GridView MainActivity.java activity_main.xml main_grid_item.xml ...
  • ObjC中怎麼判斷可變和不可變 怎麼判斷NSString和NSMutableString呢? 請聽題 這很簡單當然選B的,字元串常量是NSString。所以正確答案是A,是不是有種高考題的趕腳。建議這題出面試。 首先應該百度objc的類簇概念,然後是工廠模式。這篇筆記只講怎麼判斷,開個傳送門自己去打 ...
一周排行
    -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.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...