欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

Android中fragment+viewpager實現(xiàn)布局

 更新時間:2017年10月23日 14:17:28   作者:菜鳥夢想之路  
這篇文章主要為大家詳細介紹了Android中fragment+viewpager實現(xiàn)布局效果,具有一定的參考價值,感興趣的小伙伴們可以參考一下

本文實例為大家分享了Android九宮格圖片展示的具體代碼,供大家參考,具體內(nèi)容如下

1.先布局實現(xiàn)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="發(fā)現(xiàn)" 
      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.創(chuàng)建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.創(chuàng)建fragment 相對應(yīng)的布局文件

<?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.創(chuàng)建適配器繼承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; 
  //構(gòu)造方法 
  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); 
  } 
 
  //得到數(shù)量 
  @Override 
  public int getCount() { 
    return fragments.size(); 
  } 
} 

5.在mainActivity實現(xiàn)效果

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); 
    //設(shè)置適配器 
    vPager.setAdapter(myAdapter); 
  } 
 
  //ViewPager.OnPageChangeListener監(jiān)聽事件 
  @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); 
        //設(shè)置選中的顏色 
        radiobutton.setBackgroundColor(Color.RED); 
      }else { 
        radiobutton.setChecked(false); 
        radiobutton.setBackgroundColor(Color.BLACK); 
        radiobutton.setBackgroundColor(Color.BLACK); 
      } 
    } 
  } 
 
  @Override 
  public void onPageScrollStateChanged(int state) { 
 
  } 
 
  //RadioGroup的監(jiān)聽事件 
 
  @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) { 
        //設(shè)置當前頁 
        vPager.setCurrentItem(j); 
      } 
    } 
  } 
} 

6.最后的效果圖

以上就是本文的全部內(nèi)容,希望對大家的學(xué)習有所幫助,也希望大家多多支持腳本之家。

相關(guān)文章

  • Android編程實現(xiàn)獲取所有傳感器數(shù)據(jù)的方法

    Android編程實現(xiàn)獲取所有傳感器數(shù)據(jù)的方法

    這篇文章主要介紹了Android編程實現(xiàn)獲取所有傳感器數(shù)據(jù)的方法,涉及Android針對傳感器Sensor相關(guān)操作技巧,需要的朋友可以參考下
    2017-06-06
  • Compose?的?Navigation組件使用示例詳解

    Compose?的?Navigation組件使用示例詳解

    這篇文章主要為大家介紹了Compose?的?Navigation組件使用示例詳解,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進步,早日升職加薪
    2022-10-10
  • Android 靜默方式實現(xiàn)批量安裝卸載應(yīng)用程序的深入分析

    Android 靜默方式實現(xiàn)批量安裝卸載應(yīng)用程序的深入分析

    本篇文章是對Android 靜默方式實現(xiàn)批量安裝卸載應(yīng)用程序進行了詳細的分析介紹,需要的朋友參考下
    2013-06-06
  • Android中LayoutInflater.inflater()的正確打開方式

    Android中LayoutInflater.inflater()的正確打開方式

    這篇文章主要給大家介紹了關(guān)于Android中LayoutInflater.inflater()的正確打開方式,文中通過示例代碼介紹的非常詳細,需要的朋友可以參考借鑒,下面隨著小編來一起學(xué)習學(xué)習吧
    2018-12-12
  • Android自定義shape的使用示例

    Android自定義shape的使用示例

    本文主要介紹自定義shape(定義矩形、定義邊框顏色、定義圓角弧度),具體代碼如下,感興趣的各位可以參考下哈,希望對大家有所幫助
    2013-06-06
  • android使用Rxjava實現(xiàn)倒計時功能

    android使用Rxjava實現(xiàn)倒計時功能

    這篇文章主要為大家詳細介紹了android使用Rxjava實現(xiàn)倒計時功能,具有一定的參考價值,感興趣的小伙伴們可以參考一下
    2018-06-06
  • Android 日期選擇器實例代碼

    Android 日期選擇器實例代碼

    這篇文章主要介紹了Android 日期選擇器實例代碼,需要的朋友可以參考下
    2017-05-05
  • android命令行模擬輸入事件(文字、按鍵、觸摸等)

    android命令行模擬輸入事件(文字、按鍵、觸摸等)

    這篇文章主要給大家介紹了關(guān)于android命令行模擬輸入事件,例如文字、按鍵、觸摸等的相關(guān)資料,文中通過示例代碼介紹的非常詳細,對各位android開發(fā)者們具有一定的參考學(xué)習價值,需要的朋友們下面來一起學(xué)習學(xué)習吧
    2019-06-06
  • Android多返回棧技術(shù)

    Android多返回棧技術(shù)

    本文將詳情講解用戶通過系統(tǒng)返回按鈕導(dǎo)航回去的一組頁面,在開發(fā)中被稱為返回棧 (back stack)。多返回棧即一堆 "返回棧",對多返回棧的支持是在 Navigation 2.4.0-alpha01 和 Fragment 1.4.0-alpha01 中開始的,有興趣的話一起參與學(xué)習
    2021-08-08
  • android加密參數(shù)定位實現(xiàn)方法

    android加密參數(shù)定位實現(xiàn)方法

    這篇文章主要介紹了android加密參數(shù)定位方法,本文給大家介紹的非常詳細,對大家的學(xué)習或工作具有一定的參考借鑒價值,需要的朋友可以參考下
    2021-04-04

最新評論