自定义对话框在android的顶部提供空白区域
作者:互联网
我正在开发一个应用程序,我已经实现了一个自定义对话框用于确认目的,我已经为对话框创建了一个自定义布局,但它顶部有空白区域,有人可以帮我删除吗?
XML
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_gravity="center"
android:gravity="center"
android:background="@drawable/bg_et_selected"
android:layout_width="300dp" android:layout_height="170dp">
<RelativeLayout
android:layout_width="300dp"
android:layout_height="170dp">
<TextView
android:id="@+id/tv_hdr"
android:layout_width="fill_parent"
android:layout_height="40dp"
android:background="#31E2D9"
android:layout_alignParentTop="true"
android:text="Report"
android:textSize="22dp"
android:gravity="center"
android:textColor="#ffffff"
android:textStyle="bold"
/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="22dp"
android:layout_below="@+id/tv_hdr"
android:layout_marginTop="20dp"
android:gravity="center"
android:textStyle="bold"
android:text="Are you sure want to report this post?"
android:layout_centerHorizontal="true"
android:textColor="#545454"
android:id="@+id/tv_title" />
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:weightSum="2"
>
<Button
android:id="@+id/btn_ok"
android:layout_width="wrap_content"
android:layout_height="35dp"
android:text="YES"
android:textStyle="bold"
android:textColor="#ffffff"
android:background="@drawable/btn_selector"
android:layout_weight="1"/>
<View
android:layout_width="1dp"
android:layout_height="30dp"
android:background="#ffffff"/>
<Button
android:id="@+id/btn_cancel"
android:layout_width="wrap_content"
android:layout_height="35dp"
android:text="NO"
android:textStyle="bold"
android:textColor="#ffffff"
android:background="@drawable/btn_selector"
android:layout_weight="1"/>
</LinearLayout>
</RelativeLayout>
</RelativeLayout>
解决方法:
我自己修复了它,我从代码中删除了对话框标题并修复了,请看这里.
dialog.requestWindowFeature(Window.FEATURE_NO_TITLE);
dialog.setContentView(R.layout.dialog_report);
以前它给了我空白的标题是空白的.
标签:android-alertdialog,android,customdialog 来源: https://codeday.me/bug/20190829/1758225.html