Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> android中的2種fragment部署方法

android中的2種fragment部署方法

編輯:關於Android編程

1.靜態類部署方法:

layout.xml

android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >


android:id="@+id/fragment1"
android:name="com.example.filedirtest.Fragment2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="0.20" />

 

class:

import android.app.Fragment; //注意這裡導入的是此fragment

public static class Selffragment extends Fragment {
public Selffragment() {
}
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
// TODO Auto-generated method stub
View root=inflater.inflate(R.layout.prefrence_fragment, container,false);
return root;
}
}

2.動態創建:

fragment類:

public class ExampleFragment extends Fragment {
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
// TODO Auto-generated method stub
View rootView=inflater.inflate(R.layout.fragment_layout, container, false);
return rootView;

}
}

activity中創建;

ExampleFragment fragment = new ExampleFragment();
getSupportFragmentManager().beginTransaction()
.add(R.id.fragmentContainer, fragment).commit();

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved