码迷,mamicode.com
首页 > 其他好文 > 详细

Fragment的基本用法

时间:2014-12-07 16:24:04      阅读:161      评论:0      收藏:0      [点我收藏+]

标签:android   io   ar   使用   sp   for   on   文件   div   

此处使用android-support-v4.jar。

 一.
当创建包含Fragment的Activity时,如果用的是Support Library,那么继承的就应该是FragmentActivity而不是Activity。

 二.写Fragment的Layout。
 
 三. 新建ExampleFragment类。onCreateView()方法中指定布局文件。
 public static class ExampleFragment extends Fragment
{
    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
  Bundle savedInstanceState)
    {
        // Inflate the layout for this fragment
        return inflater.inflate(R.layout.example_fragment, container, false);
    }
}
 三. 通过Activity的布局文件将Fragment加入Activity

      在Activity的布局文件中,将Fragment作为一个子标签加入即可。其中android:name属性是你自己创建的fragment的完整类名。
 <fragment
        android:id="@+id/list"
        android:name="com.yang.tab.Fragment1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_weight="1" />

 四.  或通过编程的方式将Fragment加入到一个ViewGroup中

        FragmentManager fragmentManager = getSupportFragmentManager();
        FragmentTransaction fragmentTransaction = fragmentManager.beginTransaction();
        
        ExampleFragment fragment = new ExampleFragment();
        fragmentTransaction.add(R.id.linear, fragment);
        fragmentTransaction.commit();

        其中add()方法第一个参数是要插入的父控件组的资源ID。 

Fragment的基本用法

标签:android   io   ar   使用   sp   for   on   文件   div   

原文地址:http://www.cnblogs.com/yangleda/p/4149427.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!