动态添加碎片

作者:追风剑情 发布于:2015-10-12 20:44 分类:Android

xml视图参见

碎片——Fragment


  1. package com.example.androidtest;
  2.  
  3. import android.app.Activity;
  4. import android.app.FragmentManager;
  5. import android.app.FragmentTransaction;
  6. import android.os.Bundle;
  7. import android.view.Display;
  8. import android.view.WindowManager;
  9.  
  10. public class FragmentsActivity extends Activity {
  11.  
  12. @Override
  13. protected void onCreate(Bundle savedInstanceState) {
  14. super.onCreate(savedInstanceState);
  15. setContentView(R.layout.activity_fragments);
  16. FragmentManager fragmentManager = getFragmentManager();
  17. FragmentTransaction fragmentTransaction = fragmentManager.beginTransaction();
  18. WindowManager wm = getWindowManager();
  19. Display d = wm.getDefaultDisplay();
  20. if(d.getWidth() > d.getHeight()){//landscape mode
  21. Fragment1 fragment1 = new Fragment1();
  22. //android.R.id.content活动的内容视图
  23. fragmentTransaction.replace(android.R.id.content, fragment1);
  24. }else{//portrait mode
  25. Fragment2 fragment2 = new Fragment2();
  26. fragmentTransaction.replace(android.R.id.content, fragment2);
  27. }
  28. fragmentTransaction.commit();
  29. }
  30. }


标签: Android

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号