gpt4 book ai didi

android - 对话框自定义宽高问题

转载 作者:行者123 更新时间:2023-11-29 16:59:59 24 4
gpt4 key购买 nike

我正在尝试为我的自定义对话框分配自定义宽度和高度,我使用的代码适用于平板电脑 lolipop 及更高版本但在我运行 android kitkat 的手机上的对话框顶部留下了一个白色补丁。

enter image description here

代码 fragment

Dialog dialog = new Dialog(this);
dialog.setContentView(R.layout.dialog_documentationissue_notification);
dialog.setCancelable(true);

DisplayMetrics displaymetrics = new DisplayMetrics();
getWindowManager().getDefaultDisplay().getMetrics(displaymetrics);
int width = (int) (displaymetrics.widthPixels * 0.90);
int height = (int) (displaymetrics.heightPixels * 0.70);
dialog.getWindow().setLayout(width,height);
//dialog.getWindow().getAttributes().windowAnimations = R.style.NotificationDialogAnimation;
dialog.show();

布局

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:background="@android:color/transparent"
android:orientation="vertical">

<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="0.15"
android:background="#3F51B5"
android:orientation="vertical">

<View
android:layout_width="wrap_content"
android:layout_height="wrap_content" />

</LinearLayout>

<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="0.85"
android:background="@color/white"
android:orientation="vertical">

<View
android:layout_width="wrap_content"
android:layout_height="wrap_content" />

</LinearLayout>

</LinearLayout>

最佳答案

您应该在 setContentView 之前添加 requestFeature(Window.FEATURE_NO_TITLE)

 dialog.getWindow().setBackgroundDrawable(new ColorDrawable(android.graphics.Color.TRANSPARENT)); //Optional
dialog.getWindow().requestFeature(Window.FEATURE_NO_TITLE);
dialog.setContentView(R.layout.dialog_documentationissue_notification);

关于android - 对话框自定义宽高问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43389986/

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