Android入門教程 | DialogFragment 的使用
彈窗,是常見的一種提示方式。
DialogFragment是在3.0時引入的,是一種特殊的 Fragment,用於在 Activity 上展示一個模態的對話方塊。
DialogFragment 示例
確定UI樣式
首先我們得知道做成什麼樣。一般來說簡單的彈窗是一個標題,一端文字內容。 或者帶有一兩個按鈕。
這裡我們做一個有標題和文字的簡單彈窗。
layout
確定好樣式後,先把 layout 寫出來。
dialog_simple.xml
<?xml version="1.0" encoding="utf-8"?><androidx.constraintlayout.widget.ConstraintLayout xmlns:android=" xmlns:app=" android:layout_width="match_parent" android:layout_height="match_parent" android:padding="12dp"> <TextView android:id="@+id/title_tv" android:layout_width="match_parent" android:layout_height="wrap_content" android:gravity="center" android:textColor="#111111" android:textSize="16sp" android:textStyle="bold" app:layout_constraintEnd_toEndOf="parent" app:layout_constraintStart_toStartOf="parent" app:layout_constraintTop_toTopOf="parent" /> <TextView android:id="@+id/content_tv" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginTop="20dp" android:gravity="center" android:textColor="#111111" app:layout_constraintEnd_toEndOf="parent" app:layout_constraintStart_toStartOf="parent" app:layout_constraintTop_toBottomOf="@id/title_tv" /></androidx.constraintlayout.widget.ConstraintLayout>
新建彈窗類
新建一個
SimpleDialog
類繼承
DialogFragment
。
- 在
onCreate
方法中接收傳入的資料。傳遞資料使用了Bundle。 - 在
onCreateView
方法中,使用上文建立的layout。 -
在
onViewCreated
方法中進行ui操作。import android.os.Bundle;import android.view.LayoutInflater;import android.view.View;import android.view.ViewGroup;import android.widget.TextView;import androidx.annotation.NonNull;import androidx.annotation.Nullable;import androidx.fragment.app.DialogFragment;public class SimpleDialog extends DialogFragment {public static final String K_TITLE = "k_title"; // 傳輸資料時用到的keypublic static final String K_CONTENT = "k_content";private String title;private String content;@Overridepublic void onCreate(@Nullable Bundle savedInstanceState) { super.onCreate(savedInstanceState); Bundle in = getArguments(); if (in != null) { title = in.getString(K_TITLE); content = in.getString(K_CONTENT); } }@Nullable@Overridepublic View onCreateView(@NonNull LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) { return inflater.inflate(R.layout.dialog_simple, container, false); }@Overridepublic void onViewCreated(@NonNull View view, @Nullable Bundle savedInstanceState) { super.onViewCreated(view, savedInstanceState); TextView titleTv = view.findViewById(R.id.title_tv); TextView contentTv = view.findViewById(R.id.content_tv); titleTv.setText(title); contentTv.setText(content); } }
使用
把這個視窗彈出來。我們使用
DialogFragment.show(@NonNull FragmentManager manager, @Nullable String tag)
方法。
private void popSimpleDialog1(String title, String content) { SimpleDialog dialog = new SimpleDialog(); Bundle bundle = new Bundle(); bundle.putString(SimpleDialog.K_TITLE, title); bundle.putString(SimpleDialog.K_CONTENT, content); dialog.setArguments(bundle); dialog.show(getSupportFragmentManager(), "one-tag"); } // 呼叫 popSimpleDialog1("歡迎訪問");
執行到機器上可以看到效果。
小結:
使用 DialogFragment 來實現彈窗。 需要確定 ui 樣式,建立 layout,新建類繼承DialogFragment,傳入資料。
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/70008155/viewspace-2838264/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Android入門教程 | RecyclerView使用入門AndroidView
- Android入門教程 | RecyclerView實際使用AndroidView
- Android入門教程 | AsyncTask 使用介紹Android
- Android入門教程 | EditText 使用者輸入Android
- Android入門教程 | Kotlin協程入門AndroidKotlin
- Android入門教程 | Handler,Looper與MessageQueue使用與分析AndroidOOP
- 【Android開發入門教程】三.Activity入門指南!Android
- Android入門教程 | SharedPreferences 簡介Android
- Android WorkManager使用入門Android
- Android入門教程 | 使用 ConstraintLayout 構建自適應介面AndroidAI
- Android開發 - DialogFragment 類解析AndroidFragment
- Android入門教程 | 多執行緒Android執行緒
- Android入門教程 | Fragment 基礎概念AndroidFragment
- Android入門教程 | DrawerLayout 側滑欄Android
- 【Android開發入門教程】四.使用者介面之LayoutAndroid
- Charles(Windows/Android)入門使用WindowsAndroid
- Android入門教程 | Fragment (載入方法與通訊)AndroidFragment
- Android入門教程 | Button,TextView背景設定AndroidTextView
- Android入門教程 | 廣播機制 BroadcastAndroidAST
- Android入門教程:ConstraintLayout約束佈局AndroidAI
- Android OkHttp原始碼解析入門教程(一)AndroidHTTP原始碼
- Android OkHttp原始碼解析入門教程(二)AndroidHTTP原始碼
- 使用DialogFragment定義自己的DialogFragment
- Android Studio 從入門到精通視訊教程Android
- Android入門教程 |res資源目錄簡介與shape的繪製和使用Android
- 一看就懂的Android APP開發入門教程!AndroidAPP
- 【Android開發入門教程】二.Android應用程式結構分析Android
- Android 小白菜鳥從入門到精通教程Android
- Android入門教程 | RecyclerView響應子項點選AndroidView
- Android入門教程之Activity(生命週期,啟動...)Android
- Android入門教程 | mmap 檔案對映介紹Android
- Android入門教程 | TextView簡介(寬高、文字、間距)AndroidTextView
- Android Bluetooth 入門Android
- DialogFragment使用到原始碼完全解析Fragment原始碼
- Jwt的新手入門教程JWT
- Android Studio上Kotlin的入門AndroidKotlin
- Android入門教程 | UI佈局之LinearLayout 線性佈局AndroidUI
- Android入門教程 | UI佈局之RelativeLayout 相對佈局AndroidUI