Android Dialog在底部显示且宽度match_parent

来源:互联网 发布:python处理excel的优势 编辑:程序博客网 时间:2024/06/08 08:11
@Overrideprotected void onCreate(Bundle savedInstanceState) {    requestWindowFeature(Window.FEATURE_NO_TITLE);    super.onCreate(savedInstanceState);    setContentView(getLayoutResId());    getWindow().setLayout(ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.WRAP_CONTENT);    getWindow().setGravity(Gravity.BOTTOM | Gravity.CENTER_HORIZONTAL);    getWindow().setBackgroundDrawable(null);    getWindow().setWindowAnimations(R.style.PopupAnimation);}
0 0
原创粉丝点击