美文网首页
DialogFragment

DialogFragment

作者: 汪简书 | 来源:发表于2018-04-26 13:38 被阅读15次
直播间私信.jpg

私信功能一般 app 都会有2个入口

  1. 在直播间以外,普通的全页面。
  2. 在直播间,半屏。

实现

  1. popupwindow
    因为 pop 中不能插入一个 fragment(可能我才疏学浅,如有方法请留言告知,谢谢),基本上需要粘贴遍 LetterFragment 的代码,很不优雅。
  2. DialogFragment
    ta 可以直接插入一个 fragment,所以直接使用已经写好的 LetterFragment 。可能有点抽象,我直接贴出布局文件:
<?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>
  1. BottomSheetDialogFragment
    基于以上一点,我们可以让 LetterDialog 继承 BottomSheetDialogFragment。ta是什么自行搜索。ta有个很好的特性:可以随着手势伸缩、关闭。

相关文章

网友评论

      本文标题:DialogFragment

      本文链接:https://www.haomeiwen.com/subject/neeplftx.html