Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 20cda896 authored by David Liu's avatar David Liu Committed by Android (Google) Code Review
Browse files

Merge "Update TopIntroPreference" into main

parents 276b5366 6590ebf9
Loading
Loading
Loading
Loading
+0 −0

File moved.

+5 −0
Original line number Diff line number Diff line
@@ -104,6 +104,11 @@
        <item name="android:layout_width">match_parent</item>
    </style>

    <style name="SettingslibTextAppearance.LinkableTextStyle.Expressive"
        parent="@style/TextAppearance.SettingsLib.LabelLarge">
        <item name="android:textColor">?android:attr/colorAccent</item>
    </style>

    <style name="SettingslibTextButtonStyle.Expressive"
        parent="@style/Widget.Material3Expressive.Button.TextButton.Icon">
        <item name="android:theme">@style/Theme.Material3.DynamicColors.DayNight</item>
+0 −5
Original line number Diff line number Diff line
@@ -70,11 +70,6 @@
        <item name="android:textAppearance">@style/TextAppearance.SettingsLib.TitleLarge.Emphasized</item>
    </style>

    <style name="SettingslibTextAppearance.LinkableTextStyle.Expressive"
           parent="@style/TextAppearance.SettingsLib.LabelLarge">
        <item name="android:textColor">?android:attr/colorAccent</item>
    </style>

    <style name="SettingsLibStatusBannerCardStyle">
        <item name="android:layout_width">match_parent</item>
        <item name="android:layout_height">wrap_content</item>
+0 −41
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!--
  Copyright (C) 2022 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.
  -->

<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:paddingStart="?android:attr/listPreferredItemPaddingStart"
    android:paddingEnd="?android:attr/listPreferredItemPaddingEnd"
    android:paddingBottom="16dp"
    android:paddingTop="8dp"
    android:background="?android:attr/selectableItemBackground"
    android:clipToPadding="false">

    <TextView
        android:id="@android:id/title"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="start"
        android:textAlignment="viewStart"
        android:clickable="false"
        android:longClickable="false"
        android:maxLines="10"
        android:hyphenationFrequency="normalFast"
        android:lineBreakWordStyle="phrase"
        android:textAppearance="@style/TextAppearance.TopIntroText"/>
</LinearLayout>
 No newline at end of file
+1 −1
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!--
  Copyright (C) 2024 The Android Open Source Project
  Copyright (C) 2025 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.
Loading