《第一行程式碼Android》學習總結第四章 Fragment的簡單介紹
碎片(Fragment)是一種可以嵌入在活動當中的UI片段,他能讓程式更加合理與充分的利用螢幕空間。
一、Fragment的簡單使用
1、新建左側Fragment佈局left_fragment.xml與右側Fragment佈局right_fragment.xml。
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="match_parent" android:layout_height="match_parent"> <Button android:id="@+id/button" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="center_horizontal" android:text="Button"/> </LinearLayout> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="match_parent" android:layout_height="match_parent" android:background="#00ff00"> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="center_horizontal" android:textSize="20sp" android:text="this is right fragment"/> </LinearLayout>
2、新建LeftFragment類與RightFragment類,分別繼承自Fragment類,並實現onCreatView()方法。
public class LeftFragment extends Fragment { @Override public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) { //通過LayoutInflater的inflate()方法動態載入left_fragment.xml View view = inflater.inflate(R.layout.left_fragment,container,false); return view; } } public class RightFragment extends Fragment { @Nullable @Override public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) { View view = inflater.inflate(R.layout.right_fragment,container,false); return view; } }
其中,android中存在兩個不同包的Fragment:
android.app. Fragment:系統內建,存在版本不相容問題。
android.support.v4.app. Fragment:support-v4庫中Fragment,可以讓Fragment在所有Android系統版本中保持功能一致性,所以推薦使用。
3、修改activity_main.xml中程式碼,通過android:name屬性顯式指明要新增的碎片類名。
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="horizontal" android:layout_width="match_parent" android:layout_height="match_parent" > <fragment android:id="@+id/left_fragment" android:name="com.launcher.fragmenttest.LeftFragment" android:layout_width="0dp" android:layout_height="match_parent" android:layout_weight="1" /> <fragment android:id="@+id/right_fragment" android:name="com.launcher.fragmenttest.RightFragment" android:layout_width="0dp" android:layout_height="match_parent" android:layout_weight="1"/> </LinearLayout>
二、動態新增Fragment
動態新增Fragment與在佈局檔案中新增碎片的方法不同,它是將Fragment在程式執行時動態的新增到Activity。
1、新建佈局檔案another_right_fragment.xml檔案,並加入一個TextView。
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:background="#ffff00"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:textSize="20sp"
android:text="this is a another right fragment"/>
</LinearLayout>
2、新建AnotherRightFragment.java 作為另一個右側的Fragment,重寫onCreateView()方法,並載入佈局another_right_fragment.xml。
public class AnotherRightFragment extends Fragment {
@Nullable
@Override
public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
View view = inflater.inflate(R.layout.another_right_fragment,container,false);
return view;
}
}
3、修改activity_main.xml,新增FrameLayout幀佈局,將Fragment動態新增到Activity中。
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="match_parent"
>
<fragment
android:id="@+id/left_fragment"
android:name="com.launcher.fragmenttest.LeftFragment"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
/>
//幀佈局,Android中最簡單的佈局,所有控制元件預設擺放在左上角。
<FrameLayout
android:id="@+id/right_layout"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1">
</FrameLayout>
</LinearLayout>
4、修改MainActivity,實現repalceFragment()方法,完成動態新增Fragment功能。
public class MainActivity extends AppCompatActivity implements View.OnClickListener{
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Button button = (Button) findViewById(R.id.button);
button.setOnClickListener(this);
//動態新增RightFragment
replaceFragment(new RightFragment());
}
//動態新增Fragment具體實現
private void replaceFragment(Fragment fragment) {
FragmentManager fragmentManager = getSupportFragmentManager();
android.support.v4.app.FragmentTransaction transaction =
fragmentManager.beginTransaction();
transaction.replace(R.id.right_layout,fragment);
transaction.addToBackStack(null);
transaction.commit();
}
@Override
public void onClick(View view) {
switch (view.getId()){
case R.id.button:
//動態新增AnotherRightFragment
replaceFragment(new AnotherRightFragment());
break;
default:
break;
}
}
}
動態新增碎片的步驟:
1、建立待新增Fragment例項。
2、通過getSupportFragmentManager()方法獲取FragmentManager例項
3、呼叫beginTransaction()方法開啟事務
4、使用replace()方法向容器新增或替換碎片,第一個引數為需要傳入容器的ID,第二個引數為待新增的Fragment例項。
5、呼叫commit()方法提交。
三、使Fragment模擬類似Activity返回棧的效果
FragmentTransaction提供了一個addToBackStack()方法,可以用於將事務新增到返回棧中,其中一個引數接收一個名字用於描述返回棧的狀態,一般傳入null即可。
四、Fragment與Activity間的通訊
1、Activity中呼叫Fragment方法
FragmentManager提供了一個findFragmentById()方法,用於從佈局檔案中獲取Fragment例項,再呼叫碎片中的方法。
RightFragment rightFragment =
(RightFragment)getSupportFragmentManager().findFragmentById(R.id.right_fragment);
2、Fragment呼叫Activity方法
在Fragment中通過呼叫getActivity()方法得到當前Fragment相關的Activity例項。
MainActivity activity = (MainActivity)getActivity();
當在Fragment中需要Context物件時,也可以使用getActivity()方法,因為Activity本身就是一個Context。
3、Fragment與Fragment間的通訊
首先,在一個碎片中可以得到與其相關聯的活動,再通過這個活動去獲取另一個碎片例項。