
直播間私信.jpg
私信功能一般 app 都會(huì)有2個(gè)入口
- 在直播間以外,普通的全頁(yè)面。
- 在直播間,半屏。
實(shí)現(xiàn)
- popupwindow
因?yàn)?pop 中不能插入一個(gè) fragment(可能我才疏學(xué)淺,如有方法請(qǐng)留言告知,謝謝),基本上需要粘貼遍 LetterFragment 的代碼,很不優(yōu)雅。 - DialogFragment
ta 可以直接插入一個(gè) fragment,所以直接使用已經(jīng)寫(xiě)好的 LetterFragment ??赡苡悬c(diǎn)抽象,我直接貼出布局文件:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="350dp"
android:orientation="vertical"
>
<FrameLayout
android:id="@+id/fl_container"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
</LinearLayout>
- BottomSheetDialogFragment
基于以上一點(diǎn),我們可以讓 LetterDialog 繼承BottomSheetDialogFragment。ta是什么自行搜索。ta有個(gè)很好的特性:可以隨著手勢(shì)伸縮、關(guān)閉。