goodLIbHisKindImg.setImageResource(R.drawable.ic_gray_down)
mContView = View.inflate(this, R.layout.activity_pop_goodoutlib_layout, null)
popWindow = PopupWindow(mContView,LinearLayout.LayoutParams.MATCH_PARENT, LinearLayout.LayoutParams.WRAP_CONTENT, true)
// 在PopupWindow里面就加上下面代码,让键盘弹出时,不会挡住pop窗口。
popWindow.inputMethodMode = PopupWindow.INPUT_METHOD_NEEDED
popWindow.softInputMode = WindowManager.LayoutParams.SOFT_INPUT_ADJUST_NOTHING
popWindow.isOutsideTouchable = true
popWindow.contentView.measure(ViewUtils.makeDropDownMeasureSpec(popWindow.width), ViewUtils.makeDropDownMeasureSpec(popWindow.height))
popWindow.showAsDropDown(goodLibHisRel,0,0, Gravity.START)
val hisAll = popWindow.contentView.findViewById<LinearLayout>(R.id.goodsOutHisAllLin)
hisAllImg = popWindow.contentView.findViewById(R.id.goodsOutHisAllImg)
Android 更新PopupWindow里ContentView中具体的控件【显示,隐藏】
最新推荐文章于 2024-08-24 09:28:56 发布
本文详细探讨了如何在Android应用中更新PopupWindow的内容视图,并着重讲解了如何控制视图内的具体控件进行显示和隐藏操作。通过实例代码,读者将学会在PopupWindow中动态管理控件的状态,提升用户体验。
摘要由CSDN通过智能技术生成