天天看點

Android Fragment Demo(适合初學者)

Android3.0以後引進了新的控件Fragment(碎片),Fragment較Activity,使Android的布局顯得更靈活。一方面使用Fragment的時候,不必像Activity每個都需要在Manifest.xml檔案中配置,另一方面可以在Activity中動态的添加Fragment并且,一個Fragment可以重複使用。

下面總結的這個Demo适合初學Fragment的程式員使用,講到了靜态添加Fragment和動态添加Fragment兩種Fragment的使用方式。

一、靜态添加Fragment:

靜态效果實作:

Android Fragment Demo(适合初學者)
Android Fragment Demo(适合初學者)

布局檔案activity_main:

這種方法直接将兩個Fragment寫在該布局檔案中屬性name中。

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context=".MainActivity" >

    <fragment
        android:id="@+id/fragment01"
        android:name="com.fragmentdemo.Fragment01"
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight="1"
        />
    <fragment
        android:id="@+id/fragment02"
        android:name="com.fragmentdemo.Fragment02"
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight="1"/>

</LinearLayout>

           

布局檔案fragment01:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@android:color/holo_blue_dark"
    android:gravity="center"
    android:orientation="vertical" >

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="fragment01" />

</LinearLayout>
           

布局檔案fragment02:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@android:color/holo_green_light"
    android:gravity="center"
    android:orientation="vertical" >

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="fragment02" />

</LinearLayout>
           

代碼:

MainActivity:

package com.fragmentdemo;

import android.os.Bundle;
import android.app.Activity;
import android.view.Menu;
/**
 * 靜态建立Fragment
 *
 */
public class MainActivity extends Activity {

	@Override
	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.activity_main);
	}

}
           

Fragment01:

package com.fragmentdemo;

import android.app.Fragment;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;

public class Fragment01 extends Fragment {

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
            Bundle savedInstanceState) {
        return inflater.inflate(R.layout.fragment01, null);
    }
    
}
           

Fragment02:

package com.fragmentdemo;

import android.app.Fragment;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;

public class Fragment02 extends Fragment {

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
            Bundle savedInstanceState) {
        return inflater.inflate(R.layout.fragment02, null);
    }
    
}
           

二、動态添加Fragment:

動态添加Fragment可以比較靈活的添加删除Fragment,橫豎屏使用了不同的Fragment。

效果實作(豎屏Fragment01):

Android Fragment Demo(适合初學者)

效果實作(橫屏Fragment02):

Android Fragment Demo(适合初學者)

布局檔案:activity_main:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context=".MainActivity" >

</LinearLayout>
           

fragment01:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:gravity="center"
    android:background="@android:color/holo_blue_dark">
    
    <TextView
        android:text="fragment01"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        />
    
</LinearLayout>
           

fragment02:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" 
    android:gravity="center"
    android:background="@android:color/holo_green_light">
    
    <TextView 
        android:text="fragment02"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        />
    
</LinearLayout>
           

代碼:

MainActivity:

package com.fragmentdemodongtai;

import android.app.Activity;
import android.app.FragmentManager;
import android.app.FragmentTransaction;
import android.os.Bundle;

public class MainActivity extends Activity {

	@Override
	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.activity_main);
		
		int width = getWindowManager().getDefaultDisplay().getWidth();
		int height = getWindowManager().getDefaultDisplay().getHeight();
		
		Fragment01 fragment01 = new Fragment01();
		Fragment02 fragment02 = new Fragment02();
		
		FragmentManager fm = getFragmentManager();
		FragmentTransaction ft = fm.beginTransaction();
		if (width < height) {
			//豎屏
			ft.replace(android.R.id.content,fragment01);
			
		}else {
			//橫屏
			ft.replace(android.R.id.content, fragment02);
		}
		ft.commit();
	}

}
           

Fragment01:

package com.fragmentdemodongtai;

import android.app.Fragment;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;

public class Fragment01 extends Fragment {

	@Override
	public View onCreateView(LayoutInflater inflater, ViewGroup container,
			Bundle savedInstanceState) {
		return inflater.inflate(R.layout.fragment01, null);
	}
	
}
           

Fragment02:

package com.fragmentdemodongtai;

import android.app.Fragment;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;

public class Fragment02 extends Fragment {

	@Override
	public View onCreateView(LayoutInflater inflater, ViewGroup container,
			Bundle savedInstanceState) {
		return inflater.inflate(R.layout.fragment02, null);
	}
	
}
           

源代碼下載下傳:

點選下載下傳源碼