如何在没有任何背景的情况下使用 AlertDialog 在屏幕中央显示自定义布局
How to show custom layout in the center of the screen by using AlertDialog without any backround
我想在这样单击按钮时获得警告对话框视图
我的布局文件
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/popup_img"
android:contentDescription="@string/todo" />
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_marginTop="32dp"
android:orientation="vertical">
// TextView's
</LinearLayout>
<FrameLayout
android:id="@+id/btn_ok"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal|bottom">
<ImageView
// />
<TextView
// />
</FrameLayout>
</FrameLayout>
但是最后当我点击按钮时我得到了这张图片;
它有白色背景,我不想得到它并且它没有居中。谁能帮我?我应该使用 AlertDialog 吗?
我的 AlertDialog 代码是;
AlertDialog.Builder builder = new AlertDialog.Builder(this);
View view = getLayoutInflater().inflate(R.layout.layout_congratulations, null);
builder.setView(view);
AlertDialog alert = builder.create();
alert.show();
试试这个,只需更改根框架布局的宽度
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content">
示例代码
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/popup_img"
android:contentDescription="@string/todo" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_marginTop="32dp"
android:orientation="vertical">
// TextView's
</LinearLayout>
<FrameLayout
android:id="@+id/btn_ok"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal|bottom">
<ImageView
// />
<TextView
// />
</FrameLayout>
</FrameLayout>
嘿,因为您已经将内容居中,您可以将对话框的 window 设置为透明,然后显示对话框以移除白色背景。
alert.getWindow().setBackgroundDrawableResource(android.R.color.transparent);
alert.show();
我想在这样单击按钮时获得警告对话框视图
我的布局文件
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/popup_img"
android:contentDescription="@string/todo" />
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_marginTop="32dp"
android:orientation="vertical">
// TextView's
</LinearLayout>
<FrameLayout
android:id="@+id/btn_ok"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal|bottom">
<ImageView
// />
<TextView
// />
</FrameLayout>
</FrameLayout>
但是最后当我点击按钮时我得到了这张图片;
它有白色背景,我不想得到它并且它没有居中。谁能帮我?我应该使用 AlertDialog 吗?
我的 AlertDialog 代码是;
AlertDialog.Builder builder = new AlertDialog.Builder(this);
View view = getLayoutInflater().inflate(R.layout.layout_congratulations, null);
builder.setView(view);
AlertDialog alert = builder.create();
alert.show();
试试这个,只需更改根框架布局的宽度
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content">
示例代码
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/popup_img"
android:contentDescription="@string/todo" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_marginTop="32dp"
android:orientation="vertical">
// TextView's
</LinearLayout>
<FrameLayout
android:id="@+id/btn_ok"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal|bottom">
<ImageView
// />
<TextView
// />
</FrameLayout>
</FrameLayout>
嘿,因为您已经将内容居中,您可以将对话框的 window 设置为透明,然后显示对话框以移除白色背景。
alert.getWindow().setBackgroundDrawableResource(android.R.color.transparent);
alert.show();