gpt4 book ai didi

Android对话框 Activity 取出整个屏幕而不是对话框

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

我正在尝试设置一个伪装成对话的 Activity 。我希望它出现在屏幕中间,但它占据了整个屏幕,只显示灰色...

我使用了 relativeLayout,这是我的代码和截图 -

<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:theme="@android:style/Theme.Dialog"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
tools:context=".TodoListManagerActivity">

<EditText
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:minHeight="60dp"
android:id="@+id/et_add_dialog_text"
android:hint="@string/addDialogInsertTextHere"
/>

<DatePicker
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:calendarViewShown="false"
android:id="@+id/dp_add_dialog_date"
android:layout_below="@+id/et_add_dialog_text" />

<Button
style="?android:attr/buttonStyleSmall"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Add!"
android:id="@+id/btn_add_dialog_add"
android:layout_below="@id/dp_add_dialog_date"
android:layout_alignLeft="@id/dp_add_dialog_date"
/>

<CheckBox
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/addDialogCheckBoxNoDueDate"
android:id="@+id/cbx_add_dialog_no_due"
android:layout_below="@id/dp_add_dialog_date"
android:layout_centerHorizontal="true"
/>

<Button
style="?android:attr/buttonStyleSmall"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Cancel"
android:id="@+id/btn_add_dialog_cancel"
android:layout_below="@id/dp_add_dialog_date"
android:layout_alignRight="@id/dp_add_dialog_date"
/>
</RelativeLayout>

和一张截图(浪费的地方用黄色标注)—— screenshot of the fullscreen activity

我在网上搜索过,特别是在 stackoverflow.com 上搜索过,所有其他相关问题都包含“alignParentLeft”+“alignParentRight”两个组件左右,但我在我的文档中找不到这样的东西代码。

在此先感谢大家! :)

最佳答案

您需要将 Activity(伪装成 Dialog)的主题设置为 Dialog。在 list 中输入以下代码。

       <activity
android:name=".About"
android:label="@string/app_name"
android:theme="@android:style/Theme.Dialog"
>
</activity>

这一行很重要,可以将您的 Activity 设置为假装成一个对话框。

       android:theme="@android:style/Theme.Dialog"

关于Android对话框 Activity 取出整个屏幕而不是对话框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29268087/

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