日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

关于FragmentPager实现Fragment的滑动切换

發布時間:2024/4/17 编程问答 34 豆豆
生活随笔 收集整理的這篇文章主要介紹了 关于FragmentPager实现Fragment的滑动切换 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
//通過定義FragmentPager

package com.example.android.supportv4.app;


import com.example.android.supportv4.Cheeses;
import com.example.android.supportv4.R;


import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.support.v4.app.FragmentActivity;
import android.support.v4.app.FragmentManager;
import android.support.v4.app.FragmentPagerAdapter;
import android.support.v4.app.ListFragment;
import android.support.v4.view.ViewPager;
import android.util.Log;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.view.View.OnClickListener;
import android.widget.ArrayAdapter;
import android.widget.Button;
import android.widget.ListView;
import android.widget.TextView;




public class FragmentPagerSupport extends FragmentActivity {
? ? static final int NUM_ITEMS = 10;


? ? MyAdapter mAdapter;


? ? ViewPager mPager;


? ? @Override
? ? protected void onCreate(Bundle savedInstanceState) {
? ? ? ? super.onCreate(savedInstanceState);
? ? ? ? setContentView(R.layout.fragment_pager);


? ? ? ? mAdapter = new MyAdapter(getSupportFragmentManager());


? ? ? ? mPager = (ViewPager)findViewById(R.id.pager);
? ? ? ? mPager.setAdapter(mAdapter);


? ? ? ? // Watch for button clicks.
? ? ? ? Button button = (Button)findViewById(R.id.goto_first);
? ? ? ? button.setOnClickListener(new OnClickListener() {
? ? ? ? ? ? public void onClick(View v) {
? ? ? ? ? ? ? ? mPager.setCurrentItem(0);
? ? ? ? ? ? }
? ? ? ? });
? ? ? ? button = (Button)findViewById(R.id.goto_last);
? ? ? ? button.setOnClickListener(new OnClickListener() {
? ? ? ? ? ? public void onClick(View v) {
? ? ? ? ? ? ? ? mPager.setCurrentItem(NUM_ITEMS-1);
? ? ? ? ? ? }
? ? ? ? });
? ? }


? ? public static class MyAdapter extends FragmentPagerAdapter {
? ? ? ? public MyAdapter(FragmentManager fm) {
? ? ? ? ? ? super(fm);
? ? ? ? }


? ? ? ? @Override
? ? ? ? public int getCount() {
? ? ? ? ? ? return NUM_ITEMS;
? ? ? ? }


? ? ? ? @Override
? ? ? ? public Fragment getItem(int position) {
? ? ? ? ? ? return ArrayListFragment.newInstance(position);
? ? ? ? }
? ? }


? ? public static class ArrayListFragment extends ListFragment {
? ? ? ? int mNum;


? ? ? ? /**
? ? ? ? ?* Create a new instance of CountingFragment, providing "num"
? ? ? ? ?* as an argument.
? ? ? ? ?*/
? ? ? ? static ArrayListFragment newInstance(int num) {
? ? ? ? ? ? ArrayListFragment f = new ArrayListFragment();


? ? ? ? ? ? // Supply num input as an argument.
? ? ? ? ? ? Bundle args = new Bundle();
? ? ? ? ? ? args.putInt("num", num);
? ? ? ? ? ? f.setArguments(args);


? ? ? ? ? ? return f;
? ? ? ? }


? ? ? ? /**
? ? ? ? ?* When creating, retrieve this instance's number from its arguments.
? ? ? ? ?*/
? ? ? ? @Override
? ? ? ? public void onCreate(Bundle savedInstanceState) {
? ? ? ? ? ? super.onCreate(savedInstanceState);
? ? ? ? ? ? mNum = getArguments() != null ? getArguments().getInt("num") : 1;
? ? ? ? }


? ? ? ? /**
? ? ? ? ?* The Fragment's UI is just a simple text view showing its
? ? ? ? ?* instance number.
? ? ? ? ?*/
? ? ? ? @Override
? ? ? ? public View onCreateView(LayoutInflater inflater, ViewGroup container,
? ? ? ? ? ? ? ? Bundle savedInstanceState) {
? ? ? ? ? ? View v = inflater.inflate(R.layout.fragment_pager_list, container, false);
? ? ? ? ? ? View tv = v.findViewById(R.id.text);
? ? ? ? ? ? ((TextView)tv).setText("Fragment #" + mNum);
? ? ? ? ? ? return v;
? ? ? ? }


? ? ? ? @Override
? ? ? ? public void onActivityCreated(Bundle savedInstanceState) {
? ? ? ? ? ? super.onActivityCreated(savedInstanceState);
? ? ? ? ? ? setListAdapter(new ArrayAdapter<String>(getActivity(),
? ? ? ? ? ? ? ? ? ? android.R.layout.simple_list_item_1, Cheeses.sCheeseStrings));
? ? ? ? }


? ? ? ? @Override
? ? ? ? public void onListItemClick(ListView l, View v, int position, long id) {
? ? ? ? ? ? Log.i("FragmentList", "Item clicked: " + id);
? ? ? ? }
? ? }
}

總結

以上是生活随笔為你收集整理的关于FragmentPager实现Fragment的滑动切换的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。