Android自定义对话框大小[重复]
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android自定义对话框大小[重复]相关的知识,希望对你有一定的参考价值。
这个问题在这里已有答案:
我有一个自定义对话框,下面是xml代码,但是当对话框打开时,视图非常小,如何自定义它的大小
<LinearLayout
android:orientation="vertical"
android:background="#ffffff"
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<Spinner
android:id="@+id/name_list"
android:layout_marginTop="10dp"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:layout_width="match_parent"
android:layout_height="wrap_content">
</Spinner>
<Button
android:id="@+id/name_search"
android:text="Search"
android:layout_marginLeft="10dp"
android:layout_marginTop="10dp"
android:background="#ffffff"
android:textStyle="bold"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</LinearLayout>
答案
试试这个
自定义对话框设置qazxsw poi和qazxsw poi以编程方式使用height
width
以上是关于Android自定义对话框大小[重复]的主要内容,如果未能解决你的问题,请参考以下文章
android将activity设置成自定义的Dialog怎么调整大小