
popwindow
卖火柴的小男孩2020
你在驴背上看世界,世界在驴胯下看你
展开
-
android开发中 PopupWindow 自适应宽度布局
我想到的思路主要有两种:第一种是在LinearLayout布局中动态添加TextView,设置LinearLayout的属性为水平居中,TextView的属性包裹内容;第二种是自定义ListView,取item的最大宽度作为ListView的宽度。感觉第二种的封装性比较好,耦合度比较低,所以就用第二种方法实现了:自适应宽度的ListView的代码实现:/** * Cr...原创 2018-10-17 11:10:48 · 6878 阅读 · 0 评论 -
android popupwindow在屏幕内水平居中
方案一:写死window宽度,用屏幕大小减去window大小,X坐标偏移量除以2if (mPopupWindow == null) { PopupwinTransTypeBinding mBinding = DataBindingUtil.inflate(LayoutInflater.from(mFragment.mActivity), R.layout.popupwin_trans_...转载 2018-10-17 11:35:49 · 2876 阅读 · 0 评论