【安卓筆記】Fragment
阿新 • • 發佈:2019-02-04
如何建立Fragment?
Fragment通常建立在activity下,如果我們希望建立一個Fragment,可以在activity對應的佈局檔案中增加fragment節點(就跟清單檔案一樣),然後為該節點增加name或者class屬性,繫結一個待例項化的Fragment類。具體步驟如下所示:
1.在activity佈局下增加fragment節點:
從圖中可以看出,fragment的生命週期跟activity很類似,但是多了一些方法。 其中: onAttach:Fragment和Activity建立關聯的時候呼叫。 onCreateView():系統在fragment要畫自己的介面時呼叫(在真正顯示之前)此方法。這個方法必須返回frament的layout的根控制元件。如果這個fragment不提供介面,那它應返回null。 onActivityCreated:當Activity中的onCreate方法執行完後呼叫。
2.建立Fragment類:<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:orientation="horizontal" tools:context=".MainActivity" > <fragment android:id="@+id/fg1" android:name="com.example.fragmentdemo1.Fragment1" android:layout_width="0dp" android:layout_weight="1" android:layout_height="match_parent" /> </LinearLayout>
3.Fragment類對應的佈局package com.example.fragmentdemo1; import android.os.Bundle; import android.support.v4.app.Fragment; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.TextView; public class Fragment1 extends Fragment { private TextView tv = null; @Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { View view = inflater.inflate(R.layout.f1,container); tv = (TextView) view.findViewById(R.id.tv1); return view; } public void setText(String text) { tv.setText(text); } }
經過上面幾個步驟,fragment就被建立好了,下面當activity被建立後,fragment就能被顯示出來。 建立向下相容的Fragment support.v4包中提供了也提供了Fragment類,使用v4包的fragment相容性會更好。 使用方式: 1.activity繼承v4包中的FragmentActivity 2.必須匯入v4包中的Fragment 注意:佈局中的fragment節點不用修改,仍然是fragment! Fragment間的通訊 因為每個fragment都會關聯一個activity,所以只要獲取這個activity,就能從activity中獲取其他fragment,像這樣<?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="#ff0000" android:orientation="vertical" > <TextView android:id="@+id/tv1" android:layout_width="match_parent" android:layout_height="match_parent" android:text="文字1" /> </LinearLayout>
getActivity().getSupportFragmentManager().findFragmentById(R.id.fg1);
案例:
通過點選一個fragment上的按鈕設定另一個fragment的文字:
fragment1:
package com.example.fragmentdemo1;
import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.TextView;
public class Fragment1 extends Fragment
{
private TextView tv = null;
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState)
{
View view = inflater.inflate(R.layout.f1,container);
tv = (TextView) view.findViewById(R.id.tv1);
return view;
}
public void setText(String text)
{
tv.setText(text);
}
}
佈局:
<?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="#ff0000"
android:orientation="vertical" >
<TextView
android:id="@+id/tv1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="文字1"
/>
</LinearLayout>
fragment2:
package com.example.fragmentdemo1;
import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.view.LayoutInflater;
import android.view.View;
import android.view.View.OnClickListener;
import android.view.ViewGroup;
import android.widget.Button;
import android.widget.TextView;
public class Fragment2 extends Fragment
{
private Button but = null;
private TextView tv = null;
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState)
{
View view = inflater.inflate(R.layout.f2, container);
but = (Button) view.findViewById(R.id.but);
tv = (TextView) view.findViewById(R.id.tv2);
return view;
}
@Override
public void onActivityCreated(Bundle savedInstanceState)
{
super.onActivityCreated(savedInstanceState);
but.setOnClickListener(new OnClickListener()
{
@Override
public void onClick(View v)
{
Fragment1 f1 = (Fragment1) Fragment2.this.getActivity().getSupportFragmentManager().findFragmentById(R.id.fg1);
f1.setText("哈哈");
}
});
}
}
佈局:
<?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="#ffff00"
android:orientation="vertical" >
<TextView
android:id="@+id/tv2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="文字2"
/>
<Button
android:id="@+id/but"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="設定文字"
/>
</LinearLayout>
Mainactivity:
package com.example.fragmentdemo1;
import android.os.Bundle;
import android.support.v4.app.FragmentActivity;
public class MainActivity extends FragmentActivity
{
@Override
protected void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.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:orientation="horizontal"
tools:context=".MainActivity" >
<fragment
android:id="@+id/fg1"
android:name="com.example.fragmentdemo1.Fragment1"
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="match_parent"
/>
<fragment
android:id="@+id/fg2"
android:name="com.example.fragmentdemo1.Fragment2"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1" />
</LinearLayout>
動態新增Fragment
用到了FragmentTransaction這個類,跟資料庫事務差不多,對fragment進行動態的增刪,並且需要呼叫commit方法執行事務
示例程式碼:
切換橫豎屏時切換fragment顯示
FragmentTransaction ft = getSupportFragmentManager().beginTransaction();
Display display = getWindowManager().getDefaultDisplay();
if (display.getWidth() > display.getHeight()) {
Fragment1 fragment1 = new Fragment1();
ft.replace(android.R.id.content, fragment1).commit();
} else {
Fragment2 fragment2 = new Fragment2();
ft.replace(android.R.id.content, fragment2).commit();
}
從圖中可以看出,fragment的生命週期跟activity很類似,但是多了一些方法。 其中: onAttach:Fragment和Activity建立關聯的時候呼叫。 onCreateView():系統在fragment要畫自己的介面時呼叫(在真正顯示之前)此方法。這個方法必須返回frament的layout的根控制元件。如果這個fragment不提供介面,那它應返回null。 onActivityCreated:當Activity中的onCreate方法執行完後呼叫。
onDestroyView:Fragment中的佈局被移除時呼叫
onDetach:Fragment和Activity解除關聯的時候呼叫
大家可以重寫所有生命週期方法,然後通過打log的方式觀察生命週期,這裡就不貼程式碼了。