91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Android中碎片的使用方法詳細介紹

發布時間:2021-09-18 16:11:04 來源:億速云 閱讀:164 作者:chen 欄目:編程語言

本篇內容主要講解“Android中碎片的使用方法詳細介紹”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“Android中碎片的使用方法詳細介紹”吧!

Fragment的使用

其實碎片很簡單,但是網上胡亂充數的博文太多了,以至于我們有時候覺得比較亂,今天就來簡單講解一下碎片的使用.碎片的使用分為兩種,靜態添加碎片和動態添加碎片,我們就先來看一下靜態添加碎片如何實現.

靜態添加碎片

首先,先建兩個Layout文件,這就是碎片的布局文件,大家可能也發現了,Android Studio里面可以直接快速建立碎片,就像Activity一樣,但是這樣會生成很多沒用的代碼,所以我們還是選擇自己創建碎片布局.

兩個布局都很簡單,里面只有一個居中顯示的TextView,下面貼一下代碼.

第一個布局文件:fragment_first.xml

<?xml version="1.0" encoding="utf-8"?><LinearLayoutxmlns:android="http://schemas.android.com/apk/res/android"android:layout_width="match_parent"android:layout_height="match_parent"android:background="@android:color/holo_blue_light"android:orientation="vertical"><TextViewandroid:layout_width="match_parent"android:layout_height="match_parent"android:gravity="center"android:text="This is the first fragment!"/></LinearLayout>

第二個布局文件fragment_second.xml

<?xml version="1.0" encoding="utf-8"?><LinearLayoutxmlns: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:orientation="vertical"><TextViewandroid:layout_width="match_parent"android:layout_height="match_parent"android:gravity="center"android:text="This is the second fragment!"/></LinearLayout>

現在布局文件建完了,我們該建立他們對應的Fragment了,也就是后臺代碼了。新建兩個類,分別叫FirstFragment和SecondFragment,都繼承于Fragment,需要注意一點,我們教程里面所使用的Fragment全都是android.support.v4.app.Fragment這個包下的,這樣更有利于程序的兼容性.

貼一下兩個類的代碼,也很簡單,只是重寫了onCreateView方法來加載不同的布局文件.

public class FirstFragment extends Fragment {private View view;//得到碎片對應的布局文件,方便后續使用//記住一定要重寫onCreateView方法@Nullable@Overridepublic View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {view = inflater.inflate(R.layout.fragment_first, container, false);//得到對應的布局文件return view;}}public class SecondFragment extends Fragment {private View view;//得到碎片對應的布局文件,方便后續使用//記住一定要重寫onCreateView方法@Nullable@Overridepublic View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {view = inflater.inflate(R.layout.fragment_second, container, false);//得到對應的布局文件return view;}}

好,基本的工作我們做完了,現在我們用兩個Activity展示如何靜態添加碎片和動態添加碎片.

靜態添加控件的話,需要使用fragment控件,指定其名稱是你剛才創建的Fragment就可以,讓我們來看一下.

先貼一下第一個Activity的布局:

<?xml version="1.0" encoding="utf-8"?><LinearLayoutxmlns:android="http://schemas.android.com/apk/res/android"xmlns:tools="http://schemas.android.com/tools"android:id="@+id/activity_main"android:layout_width="match_parent"android:layout_height="match_parent"android:orientation="vertical"tools:context="me.worldskills.android.testfragment.MainActivity"><fragmentandroid:id="@+id/main_firstfragment"android:name="me.worldskills.android.testfragment.FirstFragment"android:layout_width="match_parent"android:layout_height="0dp"android:layout_weight="1"></fragment><fragmentandroid:id="@+id/main_secondfragment"android:name="me.worldskills.android.testfragment.SecondFragment"android:layout_width="match_parent"android:layout_height="0dp"android:layout_weight="1"></fragment><Buttonandroid:id="@+id/main_btnGoNext"android:layout_width="match_parent"android:layout_height="50dp"android:text="Go to next page"android:textAllCaps="false"/></LinearLayout>

其中那個按鈕是用來跳轉到下一個界面的,也就是動態添加碎片案例的Activity,在這里可以忽略.

這里我們看見了,兩個fragment分別指定name為FirstFragment和SecondFragment,也就是你剛才創建的兩個Fragment,一定要記得加上包名.對了,還有一個問題,就是這樣的話是沒有預覽的,如果想要預覽,需要在fragment標簽中加上一句代碼:

Tools:layout="@layout/布局文件名稱" .

好了,靜態添加碎片就完成了,什么?就這么簡單,對啊...就這么簡單.

動態添加碎片

動態添加碎片我們就不需要用fragment控件了,而是需要用個FrameLayout控件,這是為什么呢,首先我們都知道FrameLayout中的控件,都是從左上角開始顯示,不用進行位置控制,動態添加碎片其實就是向容器里面動態添加碎片,而fragment控件只能用來靜態綁定一個碎片.

先貼一下第二個Activity的布局:

<?xml version="1.0" encoding="utf-8"?><LinearLayoutxmlns:android="http://schemas.android.com/apk/res/android"xmlns:tools="http://schemas.android.com/tools"android:id="@+id/activity_second"android:layout_width="match_parent"android:layout_height="match_parent"android:orientation="vertical"><Buttonandroid:id="@+id/second_btnLoadFirst"android:layout_width="match_parent"android:layout_height="wrap_content"android:text="Load First!"android:textAllCaps="false"/><Buttonandroid:id="@+id/second_btnLoadSecond"android:layout_width="match_parent"android:layout_height="wrap_content"android:text="Load Second!"android:textAllCaps="false"/><FrameLayoutandroid:id="@+id/second_fl"android:layout_width="match_parent"android:layout_height="match_parent"></FrameLayout></LinearLayout>

上面的兩個按鈕用來加載不同的碎片,而下面的FrameLayout就是碎片顯示的容器.

廢話不多說,貼代碼:

import android.support.v4.app.FragmentManager;import android.support.v4.app.FragmentTransaction;public class SecondActivity extends AppCompatActivity {@Overrideprotected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(R.layout.activity_second);//點擊第一個按鈕的時候加載第一個碎片findViewById(R.id.second_btnLoadFirst).setOnClickListener(new View.OnClickListener() {@Overridepublic void onClick(View view) {FragmentManager fragmentManager = getSupportFragmentManager();FragmentTransaction transaction = fragmentManager.beginTransaction();transaction.replace(R.id.second_fl, new FirstFragment());transaction.commit();}});//點擊第二個按鈕的時候加載第二個碎片findViewById(R.id.second_btnLoadSecond).setOnClickListener(new View.OnClickListener() {@Overridepublic void onClick(View view) {getSupportFragmentManager().beginTransaction().replace(R.id.second_fl, new SecondFragment()).commit();//簡寫}});}}

getSupportFragmentManager方法用來獲得一個碎片管理器對象(使用這個方法的時候注意是android.support.v4.app包下的哦),然后通過這個方法開始一個碎片事物對象,這個對象比較關鍵,可以用來動態添加碎片,調用它的replace方法,會把指定容器里面的其他控件全部清除掉,然后添加新的碎片進去.在這里就是先把R.id.second_f1里面的控件清空,然后添加傳入一個FirstFragment進去.

替換完之后一定要記得調用commit方法提交,要不然你的所有操作都不會生效,切記.

到此,相信大家對“Android中碎片的使用方法詳細介紹”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

田阳县| 高碑店市| 顺义区| 桂林市| 华蓥市| 兴海县| 历史| 桃源县| 郧西县| 龙陵县| 睢宁县| 资源县| 满城县| 义乌市| 特克斯县| 金堂县| 洪江市| 镇远县| 元江| 石河子市| 卓资县| 晋城| 偏关县| 吉林省| 西平县| 崇义县| 五常市| 南投市| 郯城县| 怀安县| 饶平县| 黑山县| 襄樊市| 镇江市| 当雄县| 甘南县| 铜梁县| 梁河县| 土默特左旗| 玛曲县| 天气|