android 静态创建fragment

在Android 4.0后出现了fragment,fragment可以看作是activity的一部分,特别是在pad上使用更多些,如果3.0以下想使用,可以导入 这个android.support.v4   jar   这个jar有向下兼容的,现在我们写个demo演示下

静态fragment,就是在xml文件中配置,不是代码动态 生成的

首先看activity_main.xml文件:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="horizontal"
     >
    <fragment
        android:id="@+id/f1"
        android:layout_width="0dp"
        android:layout_height="fill_parent"
        android:layout_weight="1"
        android:name="com.example.fragment.Fragment1"
         />
<fragment
        android:id="@+id/f2"
        android:layout_width="0dp"
        android:layout_height="fill_parent"
        android:layout_weight="1"
        android:name="com.example.fragment.Fragment2"
         />
</LinearLayout>

 

再看看Fragment1.java这个类继承了v4包里的Fragment类

public class Fragment1 extends Fragment {
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
// TODO Auto-generated method stub
return inflater.inflate(R.layout.item1, null);
}
}

说明:onCreateView()这个方法返回的是一个view对象,然后加入到主activity的界面中

Fragment2.java

public class Fragment2 extends Fragment {
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
return inflater.inflate(R.layout.item2, null);
}
}

看item1.xml  item2.xml文件

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#ffff00"
     >
<TextView 
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:text="fragment-----1111111111"
    android:gravity="center"
    />
</RelativeLayout>

-----------------------------------------------------------------------------

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#ff00ff"
     >
<TextView 
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:text="fragment-----222222222222222"
    android:gravity="center"
    />
</RelativeLayout>


现在看看 fragment的依赖类 MainActivity.java

public class MainActivity extends FragmentActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
}

注意:静态的fragment一定继承FragmentActivity 类

效果图如下:


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值