23 lines
788 B
XML
23 lines
788 B
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
orientation="vertical"
|
||
|
id="@+id/topPanel"
|
||
|
layout_width="match_parent"
|
||
|
layout_height="wrap_content">
|
||
|
<LinearLayout
|
||
|
id="@+id/title_template"
|
||
|
style="?attr/materialAlertDialogTitlePanelStyle">
|
||
|
<ImageView
|
||
|
id="@android:id/icon"
|
||
|
style="?attr/materialAlertDialogTitleIconStyle"/>
|
||
|
<androidx.appcompat.widget.DialogTitle
|
||
|
id="@+id/alertTitle"
|
||
|
style="?attr/materialAlertDialogTitleTextStyle"/>
|
||
|
</LinearLayout>
|
||
|
<android.widget.Space
|
||
|
id="@+id/titleDividerNoCustom"
|
||
|
visibility="gone"
|
||
|
layout_width="match_parent"
|
||
|
layout_height="16dp"/>
|
||
|
</LinearLayout>
|