zoukankan      html  css  js  c++  java
  • Android ViewPager和TabHost结合

    前几天看了网上关于ViewPager实现滑动切换的效果。回来试了一下,发现效果确实不错,但是切换的几个页面只是调用了不同的layout,实际上还是在一个Activity里面,对功能编写就不方便了。所以,我想到了TabHost和ViewPager结合,使用TabHost切换Activity,使用ViewPager切换界面,从而晚上切换效果。废话少说,直接看代码吧。
    首先是布局的xml

     1 <?xml version="1.0" encoding="utf-8"?>
    2 <TabHost xmlns:android="http://schemas.android.com/apk/res/android"
    3 android:id="@android:id/tabhost"
    4 android:layout_width="fill_parent"
    5 android:layout_height="fill_parent" >
    6
    7 <LinearLayout
    8 android:id="@+id/linearLayout1"
    9 android:layout_width="fill_parent"
    10 android:layout_height="fill_parent"
    11 android:orientation="vertical" >
    12
    13 <TabWidget
    14 android:id="@android:id/tabs"
    15 android:layout_width="wrap_content"
    16 android:layout_height="0dip" >
    17 </TabWidget>
    18
    19 <LinearLayout
    20 android:id="@+id/linearLayout1"
    21 android:layout_width="fill_parent"
    22 android:layout_height="40dip"
    23 android:background="@drawable/title" >
    24
    25 <TextView
    26 android:id="@+id/text1"
    27 android:layout_width="fill_parent"
    28 android:layout_height="fill_parent"
    29 android:layout_weight="1.0"
    30 android:gravity="center"
    31 android:text="@string/black"
    32 android:textColor="#FFFFFF"
    33 android:textSize="22.0dip" />
    34
    35 <TextView
    36 android:id="@+id/text2"
    37 android:layout_width="fill_parent"
    38 android:layout_height="fill_parent"
    39 android:layout_weight="1.0"
    40 android:gravity="center"
    41 android:text="@string/gray"
    42 android:textColor="#FFFFFF"
    43 android:textSize="22.0dip" />
    44
    45 <TextView
    46 android:id="@+id/text3"
    47 android:layout_width="fill_parent"
    48 android:layout_height="fill_parent"
    49 android:layout_weight="1.0"
    50 android:gravity="center"
    51 android:text="@string/white"
    52 android:textColor="#FFFFFF"
    53 android:textSize="22.0dip" />
    54 </LinearLayout>
    55
    56 <ImageView
    57 android:id="@+id/cursor"
    58 android:layout_width="fill_parent"
    59 android:layout_height="wrap_content"
    60 android:scaleType="matrix"
    61 android:src="@drawable/a" />
    62
    63 <android.support.v4.view.ViewPager
    64 android:id="@+id/vPager"
    65 android:layout_width="wrap_content"
    66 android:layout_height="wrap_content"
    67 android:layout_gravity="center"
    68 android:layout_weight="1.0"
    69 android:background="#000000"
    70 android:flipInterval="30"
    71 android:persistentDrawingCache="animation" />
    72
    73 <FrameLayout
    74 android:id="@android:id/tabcontent"
    75 android:layout_width="wrap_content"
    76 android:layout_height="wrap_content"
    77 android:visibility="gone" >
    78 </FrameLayout>
    79 </LinearLayout>
    80
    81 </TabHost>

    然后是java文件

      1 package com.wcs233;
    2
    3 import java.util.ArrayList;
    4 import java.util.List;
    5
    6 import android.app.LocalActivityManager;
    7 import android.app.TabActivity;
    8 import android.content.Context;
    9 import android.content.Intent;
    10 import android.graphics.BitmapFactory;
    11 import android.graphics.Matrix;
    12 import android.os.Bundle;
    13 import android.os.Parcelable;
    14 import android.support.v4.view.PagerAdapter;
    15 import android.support.v4.view.ViewPager;
    16 import android.support.v4.view.ViewPager.OnPageChangeListener;
    17 import android.util.DisplayMetrics;
    18 import android.util.Log;
    19 import android.view.View;
    20 import android.view.Window;
    21 import android.view.animation.Animation;
    22 import android.view.animation.TranslateAnimation;
    23 import android.widget.ImageView;
    24 import android.widget.TabHost;
    25 import android.widget.TextView;
    26
    27 public class ConfigTabActivity extends TabActivity {
    28
    29 //页卡内容
    30 private ViewPager mPager;
    31 // Tab页面列表
    32 private List<View> listViews;
    33 // 动画图片
    34 private ImageView cursor;
    35 // 页卡头标
    36 private TextView t1, t2, t3;
    37 // 动画图片偏移量
    38 private int offset = 0;
    39 // 当前页卡编号
    40 private int currIndex = 0;
    41 // 动画图片宽度
    42 private int bmpW;
    43 private LocalActivityManager manager = null;
    44 private final static String TAG = "ConfigTabActivity";
    45 private final Context context = ConfigTabActivity.this;
    46 private TabHost mTabHost;
    47
    48 /** Called when the activity is first created. */
    49 @Override
    50 public void onCreate(Bundle savedInstanceState) {
    51 super.onCreate(savedInstanceState);
    52
    53 Log.d(TAG, "---onCreate---");
    54
    55 requestWindowFeature(Window.FEATURE_NO_TITLE);
    56 setContentView(R.layout.config);
    57
    58 mTabHost = getTabHost();
    59 mTabHost.addTab(mTabHost.newTabSpec("A").setIndicator(
    60 "").setContent(
    61 new Intent(this, A.class)));
    62 mTabHost.addTab(mTabHost.newTabSpec("B").setIndicator(
    63 "").setContent(
    64 new Intent(this, B.class)));
    65 mTabHost.addTab(mTabHost.newTabSpec("C").setIndicator(
    66 "").setContent(
    67 new Intent(this, C.class)));
    68 mTabHost.setCurrentTab(0);
    69
    70 manager = new LocalActivityManager(this, true);
    71 manager.dispatchCreate(savedInstanceState);
    72
    73 InitImageView();
    74 InitTextView();
    75 InitViewPager();
    76 }
    77
    78 /**
    79 * 初始化头标
    80 */
    81 private void InitTextView() {
    82 t1 = (TextView) findViewById(R.id.text1);
    83 t2 = (TextView) findViewById(R.id.text2);
    84 t3 = (TextView) findViewById(R.id.text3);
    85
    86 t1.setOnClickListener(new MyOnClickListener(0));
    87 t2.setOnClickListener(new MyOnClickListener(1));
    88 t3.setOnClickListener(new MyOnClickListener(2));
    89 }
    90
    91 /**
    92 * 初始化ViewPager
    93 */
    94 private void InitViewPager() {
    95 mPager = (ViewPager) findViewById(R.id.vPager);
    96 listViews = new ArrayList<View>();
    97 MyPagerAdapter mpAdapter = new MyPagerAdapter(listViews);
    98 Intent intent = new Intent(context, A.class);
    99 listViews.add(getView("Black", intent));
    100 Intent intent2 = new Intent(context, B.class);
    101 listViews.add(getView("Gray", intent2));
    102 Intent intent3 = new Intent(context, C.class);
    103 listViews.add(getView("White", intent3));
    104 mPager.setAdapter(mpAdapter);
    105 mPager.setCurrentItem(0);
    106 mPager.setOnPageChangeListener(new MyOnPageChangeListener());
    107 }
    108
    109 /**
    110 * 初始化动画
    111 */
    112 private void InitImageView() {
    113 cursor = (ImageView) findViewById(R.id.cursor);
    114 bmpW = BitmapFactory.decodeResource(getResources(), R.drawable.a)
    115 .getWidth();// 获取图片宽度
    116 DisplayMetrics dm = new DisplayMetrics();
    117 getWindowManager().getDefaultDisplay().getMetrics(dm);
    118 int screenW = dm.widthPixels;// 获取分辨率宽度
    119 offset = (screenW / 3 - bmpW) / 2;// 计算偏移量
    120 Matrix matrix = new Matrix();
    121 matrix.postTranslate(offset, 0);
    122 cursor.setImageMatrix(matrix);// 设置动画初始位置
    123 }
    124
    125 /**
    126 * ViewPager适配器
    127 */
    128 public class MyPagerAdapter extends PagerAdapter {
    129 public List<View> mListViews;
    130
    131 public MyPagerAdapter(List<View> mListViews) {
    132 this.mListViews = mListViews;
    133 }
    134
    135 @Override
    136 public void destroyItem(View arg0, int arg1, Object arg2) {
    137 ((ViewPager) arg0).removeView(mListViews.get(arg1));
    138 }
    139
    140 @Override
    141 public void finishUpdate(View arg0) {
    142 }
    143
    144 @Override
    145 public int getCount() {
    146 return mListViews.size();
    147 }
    148
    149 @Override
    150 public Object instantiateItem(View arg0, int arg1) {
    151 ((ViewPager) arg0).addView(mListViews.get(arg1), 0);
    152 return mListViews.get(arg1);
    153 }
    154
    155 @Override
    156 public boolean isViewFromObject(View arg0, Object arg1) {
    157 return arg0 == (arg1);
    158 }
    159
    160 @Override
    161 public void restoreState(Parcelable arg0, ClassLoader arg1) {
    162 }
    163
    164 @Override
    165 public Parcelable saveState() {
    166 return null;
    167 }
    168
    169 @Override
    170 public void startUpdate(View arg0) {
    171 }
    172 }
    173
    174 /**
    175 * 头标点击监听
    176 */
    177 public class MyOnClickListener implements View.OnClickListener {
    178 private int index = 0;
    179
    180 public MyOnClickListener(int i) {
    181 index = i;
    182 }
    183
    184 @Override
    185 public void onClick(View v) {
    186 mPager.setCurrentItem(index);
    187 }
    188 };
    189
    190 /**
    191 * 页卡切换监听
    192 */
    193 public class MyOnPageChangeListener implements OnPageChangeListener {
    194
    195 int one = offset * 2 + bmpW;// 页卡1 -> 页卡2 偏移量
    196 int two = one * 2;// 页卡1 -> 页卡3 偏移量
    197
    198 @Override
    199 public void onPageSelected(int arg0) {
    200 Animation animation = null;
    201 Intent intent = new Intent();
    202 switch (arg0) {
    203 case 0:
    204
    205 Log.d(TAG, "---0---");
    206 mTabHost.setCurrentTab(0);
    207 if (currIndex == 1) {
    208 animation = new TranslateAnimation(one, 0, 0, 0);
    209 } else if (currIndex == 2) {
    210 animation = new TranslateAnimation(two, 0, 0, 0);
    211 }
    212 break;
    213 case 1:
    214
    215 Log.d(TAG, "---1---");
    216 mTabHost.setCurrentTab(1);
    217 if (currIndex == 0) {
    218 animation = new TranslateAnimation(offset, one, 0, 0);
    219 } else if (currIndex == 2) {
    220 animation = new TranslateAnimation(two, one, 0, 0);
    221 }
    222 break;
    223 case 2:
    224
    225 Log.d(TAG, "---2---");
    226 mTabHost.setCurrentTab(2);
    227 if (currIndex == 0) {
    228 animation = new TranslateAnimation(offset, two, 0, 0);
    229 } else if (currIndex == 1) {
    230 animation = new TranslateAnimation(one, two, 0, 0);
    231 }
    232 break;
    233 }
    234 currIndex = arg0;
    235 animation.setFillAfter(true);// True:图片停在动画结束位置
    236 animation.setDuration(300);
    237 cursor.startAnimation(animation);
    238 }
    239
    240 @Override
    241 public void onPageScrolled(int arg0, float arg1, int arg2) {
    242 }
    243
    244 @Override
    245 public void onPageScrollStateChanged(int arg0) {
    246 }
    247 }
    248
    249 private View getView(String id,Intent intent)
    250 {
    251 return manager.startActivity(id, intent).getDecorView();
    252 }
    253 }

    至于每个单独页面的layout和java,大家就根据自己的需求写吧。


  • 相关阅读:
    LeetCode 501. 二叉搜索树中的众数
    LeetCode 404.左叶子之和
    LeetCode 450. 删除二叉搜索树中的节点
    LeetCode 437. 路径总和 III
    LeetCode 429. N 叉树的层序遍历
    LeetCode 213. 打家劫舍 II
    LeetCode 337. 打家劫舍 III
    LeetCode 198. 打家劫舍
    LeetCode 235. 二叉搜索树的最近公共祖先
    LeetCode 230. 二叉搜索树中第K小的元素
  • 原文地址:https://www.cnblogs.com/wcs233/p/2411071.html
Copyright © 2011-2022 走看看