碎片之间进行交互

作者:追风剑情 发布于:2015-11-15 17:46 分类:Android

碎片1

视图

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="fill_parent"
  4. android:layout_height="fill_parent"
  5. android:orientation="vertical"
  6. android:background="#00FF00" >
  7. <TextView
  8. android:id="@+id/lblFragment1"
  9. android:layout_width="fill_parent"
  10. android:layout_height="wrap_content"
  11. android:text="This is fragment #1"
  12. android:textColor="#000000"
  13. android:textSize="25sp"/>
  14. </LinearLayout>

代码

  1. package com.example.androidtest;
  2.  
  3. import android.app.Activity;
  4. import android.app.Fragment;
  5. import android.os.Bundle;
  6. import android.util.Log;
  7. import android.view.LayoutInflater;
  8. import android.view.View;
  9. import android.view.ViewGroup;
  10.  
  11. public class Fragment1 extends Fragment{
  12. @Override
  13. public View onCreateView(LayoutInflater inflater,
  14. ViewGroup container,
  15. Bundle savedInstanceState)
  16. {
  17. Log.d("Fragment1", "onCreateView");
  18. return inflater.inflate(R.layout.fragment1, container, false);
  19. }
  20. @Override
  21. public void onAttach(Activity activity)
  22. {
  23. super.onAttach(activity);
  24. Log.d("Fragment1", "onAttach");
  25. }
  26. @Override
  27. public void onCreate(Bundle savedInstanceState)
  28. {
  29. super.onCreate(savedInstanceState);
  30. Log.d("Fragment1", "onCreate");
  31. }
  32. @Override
  33. public void onActivityCreated(Bundle savedInstanceState)
  34. {
  35. super.onActivityCreated(savedInstanceState);
  36. Log.d("Fragment1", "onActivityCreated");
  37. }
  38. @Override
  39. public void onStart()
  40. {
  41. super.onStart();
  42. Log.d("Fragment1", "onStart");
  43. }
  44. @Override
  45. public void onResume()
  46. {
  47. super.onResume();
  48. Log.d("Fragment1", "onResume");
  49. }
  50. @Override
  51. public void onPause()
  52. {
  53. super.onPause();
  54. Log.d("Fragment1", "onPause");
  55. }
  56. @Override
  57. public void onStop()
  58. {
  59. super.onStop();
  60. Log.d("Fragment1", "onStop");
  61. }
  62. @Override
  63. public void onDestroyView()
  64. {
  65. super.onDestroyView();
  66. Log.d("Fragment1", "onDestroyView");
  67. }
  68. @Override
  69. public void onDetach()
  70. {
  71. super.onDetach();
  72. Log.d("Fragment1", "onDetach");
  73. }
  74. }

碎片2

视图

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="fill_parent"
  4. android:layout_height="fill_parent"
  5. android:orientation="vertical"
  6. android:background="#FFFE00" >
  7. <TextView
  8. android:layout_width="fill_parent"
  9. android:layout_height="wrap_content"
  10. android:text="This is fragment #2"
  11. android:textColor="#000000"
  12. android:textSize="25sp"/>
  13. <Button
  14. android:id="@+id/btnGetText"
  15. android:layout_width="wrap_content"
  16. android:layout_height="wrap_content"
  17. android:text="Get text in Fragment #1"
  18. android:textColor="#000000"
  19. android:onClick="onClick"/>
  20. </LinearLayout>

代码

  1. package com.example.androidtest;
  2.  
  3. import android.app.Fragment;
  4. import android.os.Bundle;
  5. import android.util.Log;
  6. import android.view.LayoutInflater;
  7. import android.view.View;
  8. import android.view.ViewGroup;
  9. import android.widget.Button;
  10. import android.widget.TextView;
  11. import android.widget.Toast;
  12.  
  13. public class Fragment2 extends Fragment {
  14. @Override
  15. public View onCreateView(LayoutInflater inflater,
  16. ViewGroup container,
  17. Bundle savedInstanceState)
  18. {
  19. return inflater.inflate(R.layout.fragment2, container, false);
  20. }
  21. @Override
  22. public void onStart()
  23. {
  24. super.onStart();
  25. //getActivity() 返回与当前碎片关联的活动
  26. Button btnGetText = (Button) getActivity().findViewById(R.id.btnGetText);
  27. btnGetText.setOnClickListener(new View.OnClickListener() {
  28. @Override
  29. public void onClick(View v) {
  30. TextView lbl = (TextView) getActivity().findViewById(R.id.lblFragment1);
  31. Toast.makeText(getActivity(), lbl.getText(), Toast.LENGTH_SHORT).show();
  32. }
  33. });
  34. }
  35. }

活动

视图

  1. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2. xmlns:tools="http://schemas.android.com/tools"
  3. android:layout_width="fill_parent"
  4. android:layout_height="fill_parent"
  5. android:orientation="horizontal"
  6. tools:context="${relativePackage}.${activityClass}" >
  7.  
  8. <fragment
  9. android:name="com.example.androidtest.Fragment1"
  10. android:id="@+id/fragment1"
  11. android:layout_weight="1"
  12. android:layout_width="0px"
  13. android:layout_height="match_parent" />
  14. <fragment
  15. android:name="com.example.androidtest.Fragment2"
  16. android:id="@+id/fragment2"
  17. android:layout_weight="1"
  18. android:layout_width="0px"
  19. android:layout_height="match_parent" />
  20.  
  21. </LinearLayout>

代码

  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. /*
  17. FragmentManager fragmentManager = getFragmentManager();
  18. FragmentTransaction fragmentTransaction = fragmentManager.beginTransaction();
  19. WindowManager wm = getWindowManager();
  20. Display d = wm.getDefaultDisplay();
  21. if(d.getWidth() > d.getHeight()){//landscape mode
  22. Fragment1 fragment1 = new Fragment1();
  23. //android.R.id.content活动的内容视图
  24. fragmentTransaction.replace(android.R.id.content, fragment1);
  25. }else{//portrait mode
  26. Fragment2 fragment2 = new Fragment2();
  27. fragmentTransaction.replace(android.R.id.content, fragment2);
  28. }
  29. //这段代码确保了当把碎片添加到活动中后,用户可以单击Back按钮移除它。
  30. fragmentTransaction.addToBackStack(null);
  31. fragmentTransaction.commit();*/
  32. }
  33. }

运行效果

fffffffffffffffff.png

标签: Android

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号