大橙子网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
这篇文章主要讲解了“fragment的基本用法”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“fragment的基本用法”吧!
公司主营业务:成都网站设计、成都网站制作、外贸网站建设、移动网站开发等业务。帮助企业客户真正实现互联网宣传,提高企业的竞争能力。成都创新互联是一支青春激扬、勤奋敬业、活力青春激扬、勤奋敬业、活力澎湃、和谐高效的团队。公司秉承以“开放、自由、严谨、自律”为核心的企业文化,感谢他们对我们的高要求,感谢他们从不同领域给我们带来的挑战,让我们激情的团队有机会用头脑与智慧不断的给客户带来惊喜。成都创新互联推出察布查尔锡伯免费做网站回馈大家。
fragment 基本使用方法
1、继承Fragment类或者子类并重写
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState)
方法。把xml文件包裹成View对象,并对vie进行操作,与activity操作View相同。
2、把fragment添加到activity中:
1)、在xml中添加,也即静态添加:
android:id="@+id/left_fragment"
android:name="com.example.test.LeftFragment"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
2)、在代码中添加,也即动态添加:
FragmentManager LeftFragment fragment=new LeftFragment();
fragmentManager=getFragmentManager();
FragmentTransaction fragmentTransaction = fragmentManager.beginTransaction();
fragmentTransaction.add(R.id.ll, fragment);
fragmentTransaction.commit();
注:需要commit().
3、基本操作,增、删、改、查。
重要类:
FragmentManager: Fragment管理
FragmentTransaction:Fragment事务
Fragment:具体Fragment
增:add方法
删:remove方法
改:replace方法
查:findFragmentByTag 或者 findFragmentById
4、回退栈
使用FragmentTransaction中的addToBackStack方法
5、与activity的通讯
在Fragment内定义一个接口,其作用是让activity使用。
1)、
public class FragmentB_1 extends Fragment implements OnClickListener {
private FragmentBIF fragmentBIF;
public interface FragmentBIF{
public void setB();
}
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
View view = inflater.inflate(R.layout.b, null);
Button button=(Button) view.findViewById(R.id.but_b);
button.setOnClickListener(this);
return view;
}
public void setFragmentBIF(FragmentBIF fragmentBIF) {
this.fragmentBIF = fragmentBIF;
}
//button的点击事件作用到接口的setB方法
@Override
public void onClick(View v) {
if(fragmentBIF!=null){
fragmentBIF.setB();
}
}
}
2)、
public class FragmentA_1 extends Fragment implements OnClickListener {
private FragmentIF fragmentIF;
public interface FragmentIF{
public void setA();
}
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
View view = inflater.inflate(R.layout.a, null);
Button button = (Button) view.findViewById(R.id.but_a);
button.setOnClickListener(this);
return view;
}
//button的点击事件作用到接口的setA方法上
@Override
public void onClick(View v) {
if(getActivity() instanceof FragmentIF){
((FragmentIF)getActivity()).setA();
}
}
}
感谢各位的阅读,以上就是“fragment的基本用法”的内容了,经过本文的学习后,相信大家对fragment的基本用法这一问题有了更深刻的体会,具体使用情况还需要大家实践验证。这里是创新互联,小编将为大家推送更多相关知识点的文章,欢迎关注!