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

Commit 175adcbf authored by android-build-team Robot's avatar android-build-team Robot
Browse files

Snap for 6342437 from 5746c2e4 to rvc-release

Change-Id: Ic25ec2e320943c1d02c2d1a832362c82e49dabed
parents d82d80c3 5746c2e4
Loading
Loading
Loading
Loading
+27 −4
Original line number Diff line number Diff line
@@ -14,6 +14,7 @@
     limitations under the License.
-->
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
              xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginTop="@dimen/action_bar_space_margin"
@@ -28,11 +29,33 @@
    <!-- used for search chip. -->
    <include layout="@layout/search_chip_row"/>

    <LinearLayout
        android:id="@+id/tabs_container"
        android:theme="@style/TabTheme"
        android:clipToPadding="true"
        android:clipChildren="true"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical">

        <com.google.android.material.tabs.TabLayout
            android:id="@+id/tabs"
            android:background="@android:color/transparent"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
        android:visibility="gone"/>
            app:tabMaxWidth="0dp"
            app:tabGravity="fill"
            app:tabMode="fixed"
            app:tabIndicatorColor="@color/tab_indicator_color"
            app:tabSelectedTextColor="@color/tab_indicator_color"
            app:tabTextAppearance="@style/TabTextAppearance"
            app:tabTextColor="?android:attr/textColorSecondary"/>

        <View
            android:layout_width="match_parent"
            android:layout_height="1dp"
            android:background="?android:attr/listDivider"/>
    </LinearLayout>

    <!-- used for apps row. -->
    <include layout="@layout/apps_row"/>
+8 −0
Original line number Diff line number Diff line
@@ -21,4 +21,12 @@
    <color name="primary">#8AB4F8</color>
    <color name="secondary">#3D8AB4F8</color>
    <color name="hairline">#5F6368</color>

    <color name="briefcase_icon_color">#669DF6</color> <!-- Blue 400 -->
    <color name="cross_profile_button_text_color">#669DF6</color> <!-- Blue 400 -->
    <color name="empty_state_text">@android:color/white</color>
    <color name="error_image_color">@android:color/white</color>

    <color name="edge_effect">@android:color/white</color>
    <color name="tab_indicator_color">#669DF6</color> <!-- Blue 400 -->
</resources>
+3 −0
Original line number Diff line number Diff line
@@ -46,4 +46,7 @@
    <color name="cross_profile_button_text_color">#1A73E8</color>
    <color name="empty_state_text">#202124</color>
    <color name="error_image_color">#757575</color>

    <color name="tab_indicator_color">#1A73E8</color> <!-- Blue 600 -->
    <color name="edge_effect">@android:color/black</color>
</resources>
+5 −0
Original line number Diff line number Diff line
@@ -114,4 +114,9 @@
        <item name="fontFamily">@string/config_fontFamilyMedium</item>
    </style>

    <style name="TabTextAppearance" parent="@android:style/TextAppearance.DeviceDefault.Medium">
        <item name="android:textSize">14sp</item>
        <item name="fontFamily">@string/config_fontFamilyMedium</item>
    </style>

</resources>
 No newline at end of file
+4 −0
Original line number Diff line number Diff line
@@ -72,4 +72,8 @@
        <item name="queryBackground">@color/menu_search_background</item>
        <item name="snackbarButtonStyle">@style/SnackbarButtonStyle</item>
    </style>

    <style name="TabTheme" parent="@style/Theme.MaterialComponents.DayNight">
        <item name="colorPrimary">@color/edge_effect</item>
    </style>
</resources>
Loading