99 lines
3.6 KiB
XML
99 lines
3.6 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
Copyright (C) 2021 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.
|
|
-->
|
|
|
|
<com.android.settingslib.widget.BannerMessageView
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
style="@style/Banner.Preference.SettingsLib">
|
|
|
|
<RelativeLayout
|
|
android:id="@+id/top_row"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:paddingBottom="8dp"
|
|
android:orientation="horizontal">
|
|
|
|
<ImageView
|
|
android:id="@+id/banner_icon"
|
|
android:layout_width="24dp"
|
|
android:layout_height="24dp"
|
|
android:layout_alignParentStart="true"
|
|
android:importantForAccessibility="no" />
|
|
|
|
<ImageButton
|
|
android:id="@+id/banner_dismiss_btn"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:src="@drawable/settingslib_ic_cross"
|
|
android:layout_alignParentEnd="true"
|
|
android:contentDescription="@string/accessibility_banner_message_dismiss"
|
|
style="@style/Banner.Dismiss.SettingsLib" />
|
|
</RelativeLayout>
|
|
|
|
<TextView
|
|
android:id="@+id/banner_title"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="start"
|
|
android:textAlignment="viewStart"
|
|
android:paddingTop="0dp"
|
|
android:paddingBottom="4dp"
|
|
android:textAppearance="@style/Banner.Title.SettingsLib"/>
|
|
|
|
<TextView
|
|
android:id="@+id/banner_subtitle"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="start"
|
|
android:textAlignment="viewStart"
|
|
android:paddingTop="0dp"
|
|
android:paddingBottom="4dp"
|
|
android:textAppearance="@style/Banner.Subtitle.SettingsLib"
|
|
android:visibility="gone"/>
|
|
|
|
<TextView
|
|
android:id="@+id/banner_summary"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="start"
|
|
android:textAlignment="viewStart"
|
|
android:paddingTop="4dp"
|
|
android:paddingBottom="8dp"
|
|
android:textAppearance="@style/Banner.Summary.SettingsLib"/>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal"
|
|
android:minHeight="8dp"
|
|
android:gravity="end">
|
|
|
|
<Button
|
|
android:id="@+id/banner_negative_btn"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
style="@style/Banner.ButtonText.SettingsLib"/>
|
|
|
|
<Button
|
|
android:id="@+id/banner_positive_btn"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
style="@style/Banner.ButtonText.SettingsLib"/>
|
|
</LinearLayout>
|
|
</com.android.settingslib.widget.BannerMessageView> |