美文网首页
Android 开发弹窗设置为屏幕的百分比高度

Android 开发弹窗设置为屏幕的百分比高度

作者: 为自己代颜_ | 来源:发表于2021-12-21 14:43 被阅读0次

    直接上代码:

                  val bottomSheet = v.findViewById<View>(R.id.ll_bg) as LinearLayout
                            bottomSheet!!.setBackgroundColor(Color.TRANSPARENT)
                            val originLayoutParams = v.layoutParams
                            originLayoutParams.height = (this@ChatRoomActivity.getRealPoint().y * 0.84).toInt() - StatusBarUtil.getNavigationBarHeight(this@ChatRoomActivity)
                            bottomSheet.layoutParams = originLayoutParams
    

    相关文章

      网友评论

          本文标题:Android 开发弹窗设置为屏幕的百分比高度

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