android自定义Dialog时如何制定dialog的大小和位置?
大家讲道理
大家讲道理 2017-04-17 17:18:38
0
3
732

在自定义dialog时,我使用Dialog.setContentView()方法来指定Dialog的布局。按理说dialog的大小应该和指定的布局文件的大小相同,但是为什么最后显示的效果是dialog一直是正方形的?

Dialog的布局文件:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:orientation="vertical"
    android:paddingTop="13.3dp"
    android:layout_width="50dp"
    android:layout_height="200dp"
    android:background="@drawable/dialog_background"
    >
        <TextView
            android:layout_gravity="center_horizontal"
            android:text="正在加载"
            android:textColor="#ffffff"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" />
</LinearLayout>

设置Dialog的布局:

        LayoutInflater inflater = LayoutInflater.from(mContext);
        View view = inflater.inflate(R.layout.dialog, null);
        mDialog.setContentView(view);

我使用了自定义的Dialog Style:

    <style name="dialog" parent="android:style/Theme.Dialog">
        <item name="android:background">#00000000</item>
        <item name="android:windowBackground">@android:color/transparent</item>
        <item name="android:windowNoTitle">true</item>
        <item name="android:windowIsFloating">true</item>
        <item name="android:backgroundDimEnabled">false</item>
    </style>
大家讲道理
大家讲道理

光阴似箭催人老,日月如移越少年。

모든 응답(3)
大家讲道理

으아악

또는

을 사용하세요. 으아악
巴扎黑

대화상자는 창을 가져온 다음 창의 너비와 높이를 설정합니다

伊谢尔伦

으아아아

이 코드를 통해 사용자 정의 대화상자의 창 크기를 설정하세요.

최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿