Fragment的切换

//主布局

<LinearLayout 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"
    android:orientation="vertical"
    tools:context="com.example.zm.yuetwo.MainActivity">
 <LinearLayout
        android:orientation="horizontal"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">
        <TextView
            android:text="页面一"
            android:gravity="center"
            android:textSize="30sp"
            android:id="@+id/one"
            android:layout_width="0dp"
            android:layout_height="match_parent"
            android:layout_weight="1"
            />
        <TextView
            android:text="页面二"
            android:gravity="center"
            android:textSize="30sp"
            android:id="@+id/two"
            android:layout_width="0dp"
            android:layout_height="match_parent"
            android:layout_weight="1"
            />
    </LinearLayout>
    <FrameLayout
        android:id="@+id/conntent"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1"
        ></FrameLayout>
</LinearLayout>

//代码操作的切换

public class MainActivity extends AppCompatActivity implements View.OnClickListener{
private FrameLayout conntent;
private Fragment01 fragment01;
private Fragment02 fragment02;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        initViews();
    }
    //初始化界面
    private void initViews() {
        TextView one=findViewById(R.id.one);
        TextView two=findViewById(R.id.two);
      conntent=findViewById(R.id.conntent);
        one.setOnClickListener(this);
        two.setOnClickListener(this);
        fragment01=new Fragment01();
        fragment02=new Fragment02();

        FragmentManager fragmentManager=getSupportFragmentManager();
        FragmentTransaction transaction=fragmentManager.beginTransaction();
        transaction.replace(R.id.conntent,fragment01);
        transaction.commit();
    }

    @Override
    public void onClick(View v) {
     switch (v.getId()){
         case R.id.one:
             FragmentManager fragmentManager=getSupportFragmentManager();
             FragmentTransaction transaction=fragmentManager.beginTransaction();
             transaction.replace(R.id.conntent,fragment01);
             transaction.commit();
             break;
         case R.id.two:
             FragmentManager fragmentManager2=getSupportFragmentManager();
             FragmentTransaction transaction2=fragmentManager2.beginTransaction();
             transaction2.replace(R.id.conntent,fragment02);
             transaction2.commit();
             break;
     }
    }
}

View view=inflater.inflate(R.layout.fragment01,container,false);
return view;

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值