二十四、Fragment(靜態新增FragMent)
阿新 • • 發佈:2022-03-30
1. 具備生命週期(很像一個子activity)
2. 必須委託在activity中才能執行
一、實現靜態新增 FragMent
1.右鍵包=》NEW => FragMent (選擇對應的fragment)
2.編輯頁面展示程式碼
<?xml version="1.0" encoding="utf-8"?> <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="vertical" tools:context=".BlankFragment1"> <TextView android:id="@+id/textview" android:layout_width="match_parent" android:layout_height="40dp" android:text="@string/hello_blank_fragment" /> <Button android:id="@+id/btn" android:layout_width="match_parent" android:layout_height="40dp" android:text="how are you 1" /> </LinearLayout>
3.編輯 “ BlankFragment1 ” 類的相關方法,如下圖所示:在 onCreateView 方法中,進行點選事件的繫結
package com.example.myapplication; import android.os.Bundle; import androidx.fragment.app.Fragment; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.Button; import android.widget.TextView; public class BlankFragment1 extends Fragment { private View root; private TextView textview; private Button button; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); } @Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { if (root==null){ root = inflater.inflate(R.layout.fragment_blank1,container,false); } textview = root.findViewById(R.id.textview); button=root.findViewById(R.id.btn); button.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View view) { textview.setText("Yes ,I am fine 1"); } }); return root; } }
4.主程式的呼叫(只需要在頁面中建立執行標籤就可以)
注意:1. 必須設定 id 屬性的值
2. name屬性跟隨需要繫結的 FragMent 頁面
<?xml version="1.0" encoding="utf-8"?> <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="vertical" tools:context=".MainActivity"> <!--fragment 設定繫結--> <fragment android:id="@+id/fragment1" android:name="com.example.myapplication.BlankFragment1" android:layout_width="match_parent" android:layout_height="match_parent" android:layout_weight="1"/> <fragment android:name="com.example.myapplication.BlankFragment2" android:layout_width="match_parent" android:layout_height="match_parent" android:layout_weight="1" android:id="@+id/fragment2"/> </LinearLayout>