若全專案皆以 Compose UI 開發,則不須使用 Fragment。
右鍵點選 app/java
資料夾 → 「New」 → 「Fragment」 → 「Fragment (Blank)」
出現 「New Android Component」 彈出視窗,於欄位「Fragment Name」輸入名稱的同時,「Fragment Layout Name」的名稱會自動同步更新;確認「Source Language」欄位值為「Kotlin」後,點選「Finish」,完成建立 Fragment
上述使用工具列新增 Fragment 是幫助開發者快速建立相關檔案,若要自行建立 Fragment,也可以手動新增檔案
右鍵點選 app/java
資料夾 → 「New」 → 「Kotlin Class/File」
出現「New Kotlin Class/File」彈出視窗 → 輸入 Fragment 名稱並選擇「Class」→ Enter 鍵 → 完成建立 Fragment
建立 Fragment 的 Layout XML(若使用 Compose UI 開發則可忽略此步驟):
右鍵點選 res/layout
資料夾 → 「New」→ 「Layout Resource File」
出現「New Resource File」彈出視窗,於「File name」欄位輸入 fragment_名稱
(例如此處範例為 fragment_home
),點選「OK」即新增完成