gpt4 book ai didi

android - 如何创建 100% 自定义 DialogFragment

转载 作者:可可西里 更新时间:2023-11-01 19:12:44 25 4
gpt4 key购买 nike

我想要一个使用完全自定义 fragment 的 Android 对话框:不包括任何平台对话框主题 fragment 。例如,像这样:

Screen Shot

我该怎么做?

最佳答案

下面的代码将帮助您显示全屏对话框并设置透明色

Dialog dialog = new Dialog(this);
dialog.getWindow().requestFeature(Window.FEATURE_NO_TITLE);
dialog.getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);
// layout to display
dialog.setContentView(R.layout.about_program_dialog_layout);

// set color transpartent
dialog.getWindow().setBackgroundDrawable(new ColorDrawable(Color.TRANSPARENT));

dialog.show();

about_program_dialog_layout.xml

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:background="#55000000" >

<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:layout_marginBottom="227dp"
android:text="Dismiss" />

<TextView
android:id="@+id/autoCompleteTextView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_above="@+id/button1"
android:layout_alignParentRight="true"
android:layout_marginBottom="16dp"
android:layout_marginRight="63dp"
android:ems="10"
android:text="Hello There World" />

</RelativeLayout>

关于android - 如何创建 100% 自定义 DialogFragment,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12849719/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com