基于fragment的页面切换功能

Fragment(完全依赖于Activity)
首先,需要建一个主的Activity文件,主要继承FragmentActivity类,实现OnPageChangeListener和OnClickListener接口。
然后,创建一个list的对象fragments。
a. 利用fragment和listView写带导航的页面跳转

底部的按钮是在RadioGroup中添加RadioButton实现的,

<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/editText3"
android:layout_alignParentTop="true"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:hint="请输入电影的名字"/>
<ListView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/LV"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true
android:layout_below="@+id/editText3">

public class denglus extends FragmentActivity implements OnPageChangeListener,OnClickListener {
private List fragments=new ArrayList<>();
private ViewPager vp;
private RadioButton dy,yy,fx,wo;

protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_denglus);
    dy=(RadioButton)findViewById(R.id.radioButton);
    yy=(RadioButton)findViewById(R.id.radioButton2);
    fx=(RadioButton)findViewById(R.id.radioButton3);
    wo=(RadioButton)findViewById(R.id.radioButton4);

    dy.setOnClickListener(this);
    yy.setOnClickListener(this);
    fx.setOnClickListener(this);
    wo.setOnClickListener(this);

    vp=(ViewPager)findViewById(R.id.vp);
    vp.setOnPageChangeListener(this);

    IndexFragment idf=new IndexFragment();
    yyFragment yf=new yyFragment();
    fxFragment fxf=new fxFragment();
    woFragment wf=new woFragment();

    fragments.add(idf);
    fragments.add(yf);
    fragments.add(fxf);
    fragments.add(wf);

    ViewPagerAdapter vpa=new ViewPagerAdapter(getSupportFragmentManager(),fragments);
    vp.setAdapter(vpa);


}

b.切换页面的位置主要由下的代码实现。

<android.support.v4.view.ViewPager
        android:id="@+id/vp"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1">
</android.support.v4.view.ViewPager>

c.每一个按钮与一个Fragment相连

dy=(RadioButton)findViewById(R.id.radioButton);
yy=(RadioButton)findViewById(R.id.radioButton2);
fx=(RadioButton)findViewById(R.id.radioButton3);
wo=(RadioButton)findViewById(R.id.radioButton4);

    dy.setOnClickListener(this);
    yy.setOnClickListener(this);
    fx.setOnClickListener(this);
    wo.setOnClickListener(this);

    vp=(ViewPager)findViewById(R.id.vp);
    vp.setOnPageChangeListener(this);

    IndexFragment idf=new IndexFragment();
    yyFragment yf=new yyFragment();
    fxFragment fxf=new fxFragment();
    woFragment wf=new woFragment();

    fragments.add(idf);
    fragments.add(yf);
    fragments.add(fxf);
    fragments.add(wf);
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值