Android中fragment+viewpager实现布局

 更新时间:2017年10月23日 14:17:28   作者:菜鸟梦想之路  
这篇文章主要为大家详细介绍了Android中fragment+viewpager实现布局效果,具有一定的参考价值,感兴趣的小伙伴们可以参考一下

本文实例为大家分享了Android九宫格图片展示的具体代码,供大家参考,具体内容如下

1.先布局实现mian.xml

<?xml version="1.0" encoding="utf-8"?> 
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
  xmlns:app="http://schemas.android.com/apk/res-auto" 
  xmlns:tools="http://schemas.android.com/tools" 
  android:layout_width="match_parent" 
  android:layout_height="match_parent" 
  tools:context="com.bwei.fragment.MainActivity"> 
 
  <android.support.v4.view.ViewPager 
    android:id="@+id/pager" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" /> 
 
  <RadioGroup 
    android:id="@+id/radioGroup1" 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" 
    android:layout_alignBottom="@+id/pager" 
    android:layout_centerHorizontal="true" 
    android:orientation="horizontal" 
    android:background="#ccc" 
    > 
 
    <RadioButton 
      android:id="@+id/radio0" 
      android:layout_width="0dp" 
      android:layout_height="match_parent" 
      android:checked="true" 
      android:button="@null" 
      android:layout_weight="1" 
      android:text="微信" 
      android:drawableTop="@mipmap/ic_launcher_round" 
      android:gravity="center" 
      /> 
 
    <RadioButton 
      android:id="@+id/radio1" 
      android:layout_width="0dp" 
      android:layout_height="match_parent" 
      android:button="@null" 
      android:layout_weight="1" 
      android:text="通讯录" 
      android:drawableTop="@mipmap/ic_launcher_round" 
      android:gravity="center" 
      /> 
 
    <RadioButton 
      android:id="@+id/radio2" 
      android:layout_width="0dp" 
      android:layout_height="match_parent" 
      android:button="@null" 
      android:layout_weight="1" 
      android:text="发现" 
      android:drawableTop="@mipmap/ic_launcher_round" 
      android:gravity="center" /> 
    <RadioButton 
      android:id="@+id/radio3" 
      android:layout_width="0dp" 
      android:layout_height="wrap_content" 
      android:button="@null" 
      android:layout_weight="1" 
      android:text="我的" 
      android:drawableTop="@mipmap/ic_launcher_round" 
      android:gravity="center"/> 
  </RadioGroup> 
</RelativeLayout> 

2.创建3个fragment 要继承Fragment类v4包下的

public class FragmentThree extends Fragment { 
  @Nullable 
  @Override 
  public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) { 
     //引入布局文件 
    View view = inflater.inflate(R.layout.fragmentthree, null); 
    return view; 
  } 
} 

3.创建fragment 相对应的布局文件

<?xml version="1.0" encoding="utf-8"?> 
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
  android:layout_width="match_parent" 
  android:layout_height="match_parent"> 
 
 
  <TextView 
    android:id="@+id/textView" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:layout_alignParentTop="true" 
    android:layout_centerHorizontal="true" 
    android:layout_marginTop="230dp" 
    android:text="one" /> 
</RelativeLayout> 

4.创建适配器继承FragmentPagerAdapter

package com.bwei.fragment; 
 
import android.content.Context; 
import android.support.v4.app.Fragment; 
import android.support.v4.app.FragmentManager; 
import android.support.v4.app.FragmentPagerAdapter; 
 
import java.util.List; 
 
 
public class MyAdapter extends FragmentPagerAdapter { 
  private List<Fragment> fragments; 
  private Context context; 
  //构造方法 
  public MyAdapter(FragmentManager fm, List<Fragment> fragments, Context context) { 
    super(fm); 
    this.fragments = fragments; 
    this.context = context; 
  } 
  //得到item条目 
  @Override 
  public Fragment getItem(int position) { 
    return fragments.get(position); 
  } 
 
  //得到数量 
  @Override 
  public int getCount() { 
    return fragments.size(); 
  } 
} 

5.在mainActivity实现效果

package com.bwei.fragment; 
 
import android.graphics.Color; 
import android.os.Bundle; 
import android.support.annotation.IdRes; 
import android.support.v4.app.Fragment; 
import android.support.v4.app.FragmentManager; 
import android.support.v4.view.ViewPager; 
import android.support.v7.app.AppCompatActivity; 
import android.widget.RadioButton; 
import android.widget.RadioGroup; 
import android.widget.Toast; 
 
import java.util.ArrayList; 
import java.util.List; 
 
public class MainActivity extends AppCompatActivity implements RadioGroup.OnCheckedChangeListener,ViewPager.OnPageChangeListener { 
 
  private ViewPager vPager; 
  private List<Fragment> fragments; 
  private FragmentManager fm; 
  private RadioGroup mRadioGroup; 
  @Override 
  protected void onCreate(Bundle savedInstanceState) { 
    super.onCreate(savedInstanceState); 
    setContentView(R.layout.activity_main); 
    //初始化控件 
    initView(); 
    initDate(); 
  } 
 
  private void initView() { 
    vPager=(ViewPager) findViewById(R.id.pager); 
    vPager.setOnPageChangeListener(this); 
    mRadioGroup=(RadioGroup) findViewById(R.id.radioGroup1); 
    mRadioGroup.setOnCheckedChangeListener(this); 
  } 
 
  private void initDate() { 
    fragments=new ArrayList<Fragment>(); 
    //实例化Fragment 
    FragmentOne fragmentOne = new FragmentOne(); 
    FragmentTwo fragmentTwo = new FragmentTwo(); 
    FragmentThree fragmentThree = new FragmentThree(); 
 
    //添加到集合 
    fragments.add(fragmentOne); 
    fragments.add(fragmentTwo); 
    fragments.add(fragmentThree); 
 
    //得到getSupportFragmentManager()的管理器 
    fm = getSupportFragmentManager(); 
    //得到适配器 
    MyAdapter myAdapter = new MyAdapter(fm, fragments, this); 
    //设置适配器 
    vPager.setAdapter(myAdapter); 
  } 
 
  //ViewPager.OnPageChangeListener监听事件 
  @Override 
  public void onPageScrolled(int position, float positionOffset, int positionOffsetPixels) { 
 
  } 
 
  @Override 
  public void onPageSelected(int position) { 
 
    for (int i = 0; i <fragments.size() ; i++) { 
      RadioButton radiobutton = (RadioButton) mRadioGroup.getChildAt(i); 
      if (i==position) { 
        radiobutton.setChecked(true); 
        //设置选中的颜色 
        radiobutton.setBackgroundColor(Color.RED); 
      }else { 
        radiobutton.setChecked(false); 
        radiobutton.setBackgroundColor(Color.BLACK); 
        radiobutton.setBackgroundColor(Color.BLACK); 
      } 
    } 
  } 
 
  @Override 
  public void onPageScrollStateChanged(int state) { 
 
  } 
 
  //RadioGroup的监听事件 
 
  @Override 
  public void onCheckedChanged(RadioGroup radioGroup, @IdRes int i) { 
 
    for (int j = 0; j <fragments.size() ; j++) { 
      //得到radiobutton 
      RadioButton radiobutton = (RadioButton) mRadioGroup.getChildAt(j); 
      int id = radiobutton.getId(); 
      Toast.makeText(this,id+"", Toast.LENGTH_SHORT).show(); 
      //判断radiobutton的id是否等于选中的id 
      if (radiobutton.getId()==i) { 
        //设置当前页 
        vPager.setCurrentItem(j); 
      } 
    } 
  } 
} 

6.最后的效果图

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。

相关文章

  • Android编程实现获取所有传感器数据的方法

    Android编程实现获取所有传感器数据的方法

    这篇文章主要介绍了Android编程实现获取所有传感器数据的方法,涉及Android针对传感器Sensor相关操作技巧,需要的朋友可以参考下
    2017-06-06
  • Compose 的 Navigation组件使用示例详解

    Compose 的 Navigation组件使用示例详解

    这篇文章主要为大家介绍了Compose 的 Navigation组件使用示例详解,有需要的朋友可以借鉴参考下,希望能够有所帮助,祝大家多多进步,早日升职加薪
    2022-10-10
  • Android 静默方式实现批量安装卸载应用程序的深入分析

    Android 静默方式实现批量安装卸载应用程序的深入分析

    本篇文章是对Android 静默方式实现批量安装卸载应用程序进行了详细的分析介绍,需要的朋友参考下
    2013-06-06
  • Android中LayoutInflater.inflater()的正确打开方式

    Android中LayoutInflater.inflater()的正确打开方式

    这篇文章主要给大家介绍了关于Android中LayoutInflater.inflater()的正确打开方式,文中通过示例代码介绍的非常详细,需要的朋友可以参考借鉴,下面随着小编来一起学习学习吧
    2018-12-12
  • Android自定义shape的使用示例

    Android自定义shape的使用示例

    本文主要介绍自定义shape(定义矩形、定义边框颜色、定义圆角弧度),具体代码如下,感兴趣的各位可以参考下哈,希望对大家有所帮助
    2013-06-06
  • android使用Rxjava实现倒计时功能

    android使用Rxjava实现倒计时功能

    这篇文章主要为大家详细介绍了android使用Rxjava实现倒计时功能,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2018-06-06
  • Android 日期选择器实例代码

    Android 日期选择器实例代码

    这篇文章主要介绍了Android 日期选择器实例代码,需要的朋友可以参考下
    2017-05-05
  • android命令行模拟输入事件(文字、按键、触摸等)

    android命令行模拟输入事件(文字、按键、触摸等)

    这篇文章主要给大家介绍了关于android命令行模拟输入事件,例如文字、按键、触摸等的相关资料,文中通过示例代码介绍的非常详细,对各位android开发者们具有一定的参考学习价值,需要的朋友们下面来一起学习学习吧
    2019-06-06
  • Android多返回栈技术

    Android多返回栈技术

    本文将详情讲解用户通过系统返回按钮导航回去的一组页面,在开发中被称为返回栈 (back stack)。多返回栈即一堆 "返回栈",对多返回栈的支持是在 Navigation 2.4.0-alpha01 和 Fragment 1.4.0-alpha01 中开始的,有兴趣的话一起参与学习
    2021-08-08
  • android加密参数定位实现方法

    android加密参数定位实现方法

    这篇文章主要介绍了android加密参数定位方法,本文给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下
    2021-04-04

最新评论