就想winform里的用户控件一样,你可以在一个页面初始化的时候,直接就在指定位置加一个用户控件,也可以更具数据来动态添加。
对于安卓里的fragment,也有这两种方式,一个叫静态加载,一个叫动态加载。
不管是静态还是动态,首先要有一个fragment的activity
package com.example.administrator.myapplication;import android.app.Activity;import android.app.Fragment;import android.os.Bundle;import android.view.LayoutInflater;import android.view.Menu;import android.view.MenuItem;import android.view.View;import android.view.ViewGroup;import android.widget.TextView;public class fragment extends Fragment { //必须继承这个类 @Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { return super.onCreateView(inflater, container, savedInstanceState); }}
然后再建一个activity来展示静态和动态的方法加载fragment
下面在这个页面的后台代码里,展示了静态加载和动态加载
protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_fragment);//这个方法必须有,虽然填的不是当前页面,当时加载后的页面就是当前页面 //以下是静态加载,在静态加载时,可以访问fragment里面的控件 TextView textView=(TextView)findViewById(R.id.sk); textView.setText("你好"); //一下是动态下载的详细步奏 fragment fragment = new fragment();//实例化这个fragment的类 FragmentManager fragmentManager = getFragmentManager() ; FragmentTransaction tran=fragmentManager.beginTransaction();//获取一个事务 tran.add(fragment, null);//添加这个事务的内容 tran.commit();//提交事务 }