zoukankan      html  css  js  c++  java
  • 两种方式添加Fragment

    • 在xml文件中添加
      <fragment
        android:id="@+id/fragment_one"
        android:name="com.xhb.fragment.TestFragment"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"/>
      
    • 在java代码中添加
      FragmentManager manager=getFragmentManager();
      FragmentTransaction transaction=manager.beginTransaction();
      TestFragment testFragment=new TestFragment();
      transaction.add(R.id.add_fragment,testFragment);
      TextView tv=(TextView)findViewById(R.id.item_text);
      tv.setText("to be or not to be");
      transaction.remove(testFragment).commit();
      Fragment fragment=manager.findFragmentById(R.id.fragment_one);
      if(fragment instanceof TestFragment){
        Toast.makeText(this, "true", Toast.LENGTH_SHORT).show();
      }else
      {
        Toast.makeText(this, "false", Toast.LENGTH_SHORT).show();
      }





  • 相关阅读:
    CSS伪元素
    leetcode
    软件镜像下载
    VUE项目问题
    js定时操作
    div 禁止点击
    JS String 与 Object 转换
    实用类
    XML文件的应用
    Socket编程
  • 原文地址:https://www.cnblogs.com/wisemen/p/5821223.html
Copyright © 2011-2022 走看看