为了账号安全,请及时绑定邮箱和手机立即绑定

AlertDialog 的 XML?

AlertDialog 的 XML?

DIEA 2023-06-04 15:38:14
我对标准 AlertDialog 的外观很满意。带有“是”按钮和“否”按钮。但是我希望我的 AlertDialog 也有一个带有监听器的开关。据我了解,我需要创建自己的自定义 AlertDialog 来实现这一点。我的问题是我可以找到标准 AlertDialog 及其按钮的 XML 文件吗?编辑:我知道如何创建自定义警报对话框。我正在寻找标准警报对话框的 XML。这样我就可以以此为模板构建我的自定义警报对话框。
查看完整描述

1 回答

?
当年话下

TA贡献1890条经验 获得超9个赞

这是xml从 的标准文件中检索到的标准 AlertDialogjar的AndroidX AppCompat library:


abc_alert_dialog_material.xml

<?xml version="1.0" encoding="utf-8"?>

<!--

     Copyright (C) 2015 The Android Open Source Project


     Licensed under the Apache License, Version 2.0 (the "License");

     you may not use this file except in compliance with the License.

     You may obtain a copy of the License at


          http://www.apache.org/licenses/LICENSE-2.0


     Unless required by applicable law or agreed to in writing, software

     distributed under the License is distributed on an "AS IS" BASIS,

     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.

     See the License for the specific language governing permissions and

     limitations under the License.

-->


<androidx.appcompat.widget.AlertDialogLayout

    xmlns:android="http://schemas.android.com/apk/res/android"

    android:id="@+id/parentPanel"

    android:layout_width="match_parent"

    android:layout_height="wrap_content"

    android:gravity="start|left|top"

    android:orientation="vertical">


    <include layout="@layout/abc_alert_dialog_title_material"/>


    <FrameLayout

        android:id="@+id/contentPanel"

        android:layout_width="match_parent"

        android:layout_height="wrap_content"

        android:minHeight="48dp">


        <View android:id="@+id/scrollIndicatorUp"

              android:layout_width="match_parent"

              android:layout_height="1dp"

              android:layout_gravity="top"

              android:background="?attr/colorControlHighlight"

              android:visibility="gone"/>


        <androidx.core.widget.NestedScrollView

            android:id="@+id/scrollView"

            android:layout_width="match_parent"

            android:layout_height="wrap_content"

            android:clipToPadding="false">


            <LinearLayout

                android:layout_width="match_parent"

                android:layout_height="wrap_content"

                android:orientation="vertical">


                <android.widget.Space

                    android:id="@+id/textSpacerNoTitle"

                    android:layout_width="match_parent"

                    android:layout_height="@dimen/abc_dialog_padding_top_material"

                    android:visibility="gone"/>


                <TextView

                    android:id="@android:id/message"

                    style="@style/TextAppearance.AppCompat.Subhead"

                    android:layout_width="match_parent"

                    android:layout_height="wrap_content"

                    android:paddingLeft="?attr/dialogPreferredPadding"

                    android:paddingRight="?attr/dialogPreferredPadding"/>


                <android.widget.Space

                    android:id="@+id/textSpacerNoButtons"

                    android:layout_width="match_parent"

                    android:layout_height="@dimen/abc_dialog_padding_top_material"

                    android:visibility="gone"/>

            </LinearLayout>

        </androidx.core.widget.NestedScrollView>


        <View android:id="@+id/scrollIndicatorDown"

              android:layout_width="match_parent"

              android:layout_height="1dp"

              android:layout_gravity="bottom"

              android:background="?attr/colorControlHighlight"

              android:visibility="gone"/>


    </FrameLayout>


    <FrameLayout

        android:id="@+id/customPanel"

        android:layout_width="match_parent"

        android:layout_height="wrap_content"

        android:minHeight="48dp">


        <FrameLayout

            android:id="@+id/custom"

            android:layout_width="match_parent"

            android:layout_height="wrap_content"/>

    </FrameLayout>


    <include layout="@layout/abc_alert_dialog_button_bar_material"

             android:layout_width="match_parent"

             android:layout_height="wrap_content"/>


</androidx.appcompat.widget.AlertDialogLayout>



查看完整回答
反对 回复 2023-06-04
  • 1 回答
  • 0 关注
  • 127 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信