碎片——Fragment

作者:追风剑情 发布于:2015-10-11 15:43 分类: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:layout_width="fill_parent"
  9. android:layout_height="wrap_content"
  10. android:text="This is fragment #1"
  11. android:textColor="#000000"
  12. android:textSize="25sp"/>
  13. </LinearLayout>

代码

  1. package com.example.androidtest;
  2.  
  3. import android.app.Fragment;
  4. import android.os.Bundle;
  5. import android.view.LayoutInflater;
  6. import android.view.View;
  7. import android.view.ViewGroup;
  8.  
  9. public class Fragment1 extends Fragment{
  10. @Override
  11. public View onCreateView(LayoutInflater inflater,
  12. ViewGroup container,
  13. Bundle savedInstanceState)
  14. {
  15. return inflater.inflate(R.layout.fragment1, container, false);
  16. }
  17. }

二、创建碎片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. </LinearLayout>

代码

  1. package com.example.androidtest;
  2.  
  3. import android.app.Fragment;
  4. import android.os.Bundle;
  5. import android.view.LayoutInflater;
  6. import android.view.View;
  7. import android.view.ViewGroup;
  8.  
  9. public class Fragment2 extends Fragment {
  10. @Override
  11. public View onCreateView(LayoutInflater inflater,
  12. ViewGroup container,
  13. Bundle savedInstanceState)
  14. {
  15. return inflater.inflate(R.layout.fragment2, container, false);
  16. }
  17. }

三、创建活动

视图

  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.os.Bundle;
  5.  
  6. public class FragmentsActivity extends Activity {
  7.  
  8. @Override
  9. protected void onCreate(Bundle savedInstanceState) {
  10. super.onCreate(savedInstanceState);
  11. setContentView(R.layout.activity_fragments);
  12. }
  13. }

运行效果

fffffff.png


注意: 除了Fragment基类,碎片还可以继承Fragment类的几个子类,例如Dialogfragment、ListFragment和PreferenceFragment。

注意: 每个碎片都需要一个唯一标识符,这可以通过android:id或android:tag属性进行设置。

标签: Android

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号