gpt4 book ai didi

java - Android对话框阴影?

转载 作者:太空狗 更新时间:2023-10-29 13:54:07 25 4
gpt4 key购买 nike

想请教一下如何在android dialog上添加阴影?

有没有办法做到这一点?因为目前我有一个对话框,但它是平面的,没有阴影样式。

希望有人能帮助我。

enter image description here

这是我的 activity_dialog.xml:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/activity_main"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
tools:context="com.bloxofcode.toggle.MainActivity">

<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textSize="20sp"
android:background="@color/colorHeaderDialog"
android:textColor="@android:color/white"
android:text="@string/select_gender"
android:paddingLeft="5dp"
android:paddingTop="15dp"
android:paddingBottom="15dp"
android:gravity="center_horizontal|left"/>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:padding="5dp">
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textSize="15sp"
android:hint="@string/hint_name"
android:id="@+id/editText"
android:paddingLeft="10dp" />

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">

<ToggleButton
android:text="ToggleButton"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/toggleButtonMale"
android:textOn=""
android:textOff=""
android:focusable="false"
android:background="@drawable/check_male"
android:layout_weight="1" />

<ToggleButton
android:text="ToggleButton"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/toggleButtonFemale"
android:textOn=""
android:textOff=""
android:focusable="false"
android:background="@drawable/check_male"
android:layout_weight="1" />
</LinearLayout>

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:paddingTop="5dp">
<Button
android:id="@+id/btnCancel"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Cancel"
android:textSize="10dp"
android:padding="15dp"
android:textColor="@android:color/white"
android:layout_weight="1"/>
<Button
android:id="@+id/btnAccept"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Accept"
android:textSize="10dp"
android:padding="15dp"
android:background="@color/colorDialogOK"
android:textColor="@android:color/white"
android:layout_weight="1"/>
</LinearLayout>
</LinearLayout>

</LinearLayout>

最佳答案

试试这个:

定义新主题

 <style name="dialog_theme">
...
<item name="android:windowBackground">@android:drawable/abc_menu_dropdown_panel_holo_light</item>
...
</style>

然后将此主题分配给您的对话框:

Dialog dialog = new Dialog(this, R.style.dialog_theme);

如果那个 drawable 不工作试试这个:

android:background="@android:drawable/dialog_holo_light_frame"

希望这锅能用。

关于java - Android对话框阴影?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41534049/

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