Fragment入门

来源:互联网 发布:阿里云域名过户步骤 编辑:程序博客网 时间:2024/06/14 10:53

碎片Fragment是一种可以嵌入在活动之中的UI片段。    它可以充分的利用大屏幕的空间,因而在平板上较多的使用。    Fragment定义的两种方式:    第一种:    通过布局指定:    <fragment android:name="com.bignerdranch.android.fragmenttest.MyFragment1"            android:id="@+id/list1"            android:layout_width="0dp"            android:layout_weight="1"            android:layout_height="match_parent"            />    <fragment android:name="com.bignerdranch.android.fragmenttest.MyFragment2"            android:id="@+id/list2"            android:layout_weight="1"            android:layout_width="0dp"            android:layout_height="match_parent"            />    //自定义Fragment,继承Fragment,覆写onCreateView()方法    public View onCreateView(LayoutInflater inflater,ViewGroup container,Bundle savedInstanceState)    public class FirstFragment extends Fragment {        @Nullable        @Override        public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {           //fragment加载view布局                    View view = inflater.inflate(R.layout.fragment1, null);            return view;        }    }第二种,动态添加         MainActivity主类:        注意:        为了兼容低版本的手机,我们可以在libs/导入android-support-v4.jar,右键Add As Library添加包        //获得FragmentManager管理类的实例 getSupportFragmentManager()        FragmentManager manager = getSupportFragmentManager();        //开始事务        FragmentTransaction transaction=manager.beginTransaction();                if(height>width){                //竖屏                 transaction.replace(android.R.id.content,new FirstFragment());                }else{                //横屏                transaction.replace(android.R.id.content,new SecondFragment());                }                //一定要记得提交                transaction.commit();        一般而言,我们还是使用getFragmentManager()来获得FragmentManager的对象.                    

0 0
原创粉丝点击
热门问题 老师的惩罚 人脸识别 我在镇武司摸鱼那些年 重生之率土为王 我在大康的咸鱼生活 盘龙之生命进化 天生仙种 凡人之先天五行 春回大明朝 姑娘不必设防,我是瞎子 搬重东西后腰疼怎么办 闪了腰怎么办一动就疼 窗户的把手断了怎么办 窗户寸漏不了水怎么办 窗户打开关不上怎么办 新装修的房子有甲醛怎么办 橄榄核上油花了怎么办 虫子飞到耳朵里怎么办 手被虫子咬肿了怎么办 梦见牙掉出血该怎么办 黑户急需5万块钱怎么办 家里欠了好多钱怎么办 欠好多网贷我该怎么办 外面欠了很多钱怎么办 欠了好多网贷怎么办 欠那么多钱我该怎么办 急用钱怎么办谁给指条路 晚上睡不着觉怎么办白天又醒不来 胃疼了好几天怎么办 手机移动卡怎么办副卡 大学我好累我怎么办 感觉婚姻很累了怎么办 一个人的心累了怎么办 头被凉水激着了怎么办 人一但懒惰了怎么办 太懒了怎么办都不想活 和老公和不来该怎么办 摩拜忘记关锁怎么办 绿萝叶子变软了怎么办 水痘疫苗打了3次怎么办 免疫组化p16阳性怎么办 乙肝五项25为阳怎么办 苏宁快递丢件了怎么办 新房苯超标10倍怎么办 结婚后遇到真爱怎么办 除皱针眉毛上扬怎么办 玩游戏充钱后悔怎么办 我被欺骗了感情怎么办 有隐私被威胁了怎么办 在微信上被威胁怎么办 别人恐吓我我该怎么办