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

Commit aac13364 authored by Android Build Coastguard Worker's avatar Android Build Coastguard Worker
Browse files

Snap for 9570005 from 8959e796 to tm-qpr3-release

Change-Id: Idb313e8b15dd1881dd2e2148b030a59842e3d251
parents 38c14a8c 8959e796
Loading
Loading
Loading
Loading
+102 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!--
     Copyright (C) 2023 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.constraintlayout.motion.widget.MotionLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/motion_container"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    app:layoutDescription="@xml/carousel_scene">

    <FrameLayout
        android:id="@+id/item_view_0"
        android:layout_width="@dimen/clock_carousel_item_small_size"
        android:layout_height="@dimen/clock_carousel_item_small_size"
        android:layout_marginEnd="16dp"
        android:scaleType="centerCrop"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toStartOf="@+id/item_view_1"
        app:layout_constraintTop_toTopOf="parent" />

    <FrameLayout
        android:id="@+id/item_view_1"
        android:layout_width="@dimen/clock_carousel_item_small_size"
        android:layout_height="@dimen/clock_carousel_item_small_size"
        android:layout_marginEnd="16dp"
        android:scaleType="centerCrop"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toStartOf="@+id/item_view_2"
        app:layout_constraintTop_toTopOf="parent" />

    <FrameLayout
        android:id="@+id/item_view_2"
        android:layout_width="@dimen/clock_carousel_item_large_size"
        android:layout_height="@dimen/clock_carousel_item_large_size"
        android:scaleType="centerCrop"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintHorizontal_bias="0.5"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

    <FrameLayout
        android:id="@+id/item_view_3"
        android:layout_width="@dimen/clock_carousel_item_small_size"
        android:layout_height="@dimen/clock_carousel_item_small_size"
        android:layout_marginStart="16dp"
        android:scaleType="centerCrop"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintStart_toEndOf="@+id/item_view_2"
        app:layout_constraintTop_toTopOf="parent" />

    <FrameLayout
        android:id="@+id/item_view_4"
        android:layout_width="@dimen/clock_carousel_item_small_size"
        android:layout_height="@dimen/clock_carousel_item_small_size"
        android:layout_marginStart="16dp"
        android:scaleType="centerCrop"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintStart_toEndOf="@+id/item_view_3"
        app:layout_constraintTop_toTopOf="parent" />

    <androidx.constraintlayout.helper.widget.Carousel
        android:id="@+id/carousel"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        app:carousel_backwardTransition="@+id/backward"
        app:carousel_firstView="@+id/item_view_2"
        app:carousel_forwardTransition="@+id/forward"
        app:carousel_infinite="true"
        app:carousel_nextState="@+id/next"
        app:carousel_previousState="@+id/previous"
        app:constraint_referenced_ids="item_view_0,item_view_1,item_view_2,item_view_3,item_view_4" />

    <!-- The guidelines make sure that only the view in the middle show between the lines  -->
    <androidx.constraintlayout.widget.Guideline
        android:id="@+id/guideline_start"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:orientation="vertical"
        app:layout_constraintGuide_begin="100dp" />

    <androidx.constraintlayout.widget.Guideline
        android:id="@+id/guideline_end"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:orientation="vertical"
        app:layout_constraintGuide_end="100dp" />
</androidx.constraintlayout.motion.widget.MotionLayout>
 No newline at end of file
+2 −84
Original line number Diff line number Diff line
@@ -14,89 +14,7 @@
     See the License for the specific language governing permissions and
     limitations under the License.
-->
<androidx.constraintlayout.motion.widget.MotionLayout
<com.android.customization.picker.clock.ui.view.ClockCarouselView
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/motion_container"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    app:layoutDescription="@xml/carousel_scene">

    <FrameLayout
        android:id="@+id/item_view_0"
        android:layout_width="100dp"
        android:layout_height="100dp"
        android:layout_marginEnd="16dp"
        android:scaleType="centerCrop"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toStartOf="@+id/item_view_1"
        app:layout_constraintTop_toTopOf="parent" />

    <FrameLayout
        android:id="@+id/item_view_1"
        android:layout_width="100dp"
        android:layout_height="100dp"
        android:layout_marginEnd="16dp"
        android:scaleType="centerCrop"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toStartOf="@+id/item_view_2"
        app:layout_constraintTop_toTopOf="parent" />

    <FrameLayout
        android:id="@+id/item_view_2"
        android:layout_width="150dp"
        android:layout_height="150dp"
        android:scaleType="centerCrop"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintHorizontal_bias="0.5"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

    <FrameLayout
        android:id="@+id/item_view_3"
        android:layout_width="100dp"
        android:layout_height="100dp"
        android:layout_marginStart="16dp"
        android:scaleType="centerCrop"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintStart_toEndOf="@+id/item_view_2"
        app:layout_constraintTop_toTopOf="parent" />

    <FrameLayout
        android:id="@+id/item_view_4"
        android:layout_width="100dp"
        android:layout_height="100dp"
        android:layout_marginStart="16dp"
        android:scaleType="centerCrop"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintStart_toEndOf="@+id/item_view_3"
        app:layout_constraintTop_toTopOf="parent" />

    <androidx.constraintlayout.helper.widget.Carousel
        android:id="@+id/carousel"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        app:carousel_backwardTransition="@+id/backward"
        app:carousel_firstView="@+id/item_view_2"
        app:carousel_forwardTransition="@+id/forward"
        app:carousel_infinite="true"
        app:carousel_nextState="@+id/next"
        app:carousel_previousState="@+id/previous"
        app:constraint_referenced_ids="item_view_0,item_view_1,item_view_2,item_view_3,item_view_4" />

    <!-- The guidelines make sure that only the view in the middle show between the lines  -->
    <androidx.constraintlayout.widget.Guideline
        android:id="@+id/guideline_start"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:orientation="vertical"
        app:layout_constraintGuide_begin="100dp" />

    <androidx.constraintlayout.widget.Guideline
        android:id="@+id/guideline_end"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:orientation="vertical"
        app:layout_constraintGuide_end="100dp" />
</androidx.constraintlayout.motion.widget.MotionLayout>
 No newline at end of file
    android:layout_height="wrap_content"/>
 No newline at end of file
+8 −14
Original line number Diff line number Diff line
@@ -23,16 +23,11 @@
    <string name="clock_description" msgid="3563839327378948">"Kies gepasmaakte horlosie"</string>
    <string name="clock_picker_entry_content_description" msgid="8377139273468595734">"Verander ’n gepasmaakte horlosie"</string>
    <string name="clock_settings_title" msgid="2940654205471453913">"Horlosie-instellings"</string>
    <!-- no translation found for clock_color (8081608867289156163) -->
    <skip />
    <!-- no translation found for clock_size (5028923902364418263) -->
    <skip />
    <!-- no translation found for clock_size_dynamic (1023930312455061642) -->
    <skip />
    <!-- no translation found for clock_size_dynamic_description (2776620745774561662) -->
    <skip />
    <!-- no translation found for clock_size_large (3143248715744138979) -->
    <skip />
    <string name="clock_color" msgid="8081608867289156163">"Kleur"</string>
    <string name="clock_size" msgid="5028923902364418263">"Grootte"</string>
    <string name="clock_size_dynamic" msgid="1023930312455061642">"Dinamies"</string>
    <string name="clock_size_dynamic_description" msgid="2776620745774561662">"Horlosiegrootte verander na gelang van sluitskerminhoud"</string>
    <string name="clock_size_large" msgid="3143248715744138979">"Groot"</string>
    <string name="grid_title" msgid="1688173478777254123">"Programrooster"</string>
    <string name="apply_theme_btn" msgid="6293081192321303991">"Pas toe"</string>
    <string name="edit_custom_theme_lbl" msgid="5211377705710775224">"Tik om te wysig"</string>
@@ -102,6 +97,7 @@
    <string name="preset_color_tab" msgid="3133391839341329314">"Basiese kleure"</string>
    <string name="color_changed" msgid="7029571720331641235">"Kleur het verander"</string>
    <string name="adaptive_color_title" msgid="1336508599235896205">"Dinamies"</string>
    <string name="color_picker_title" msgid="9150524788313065978">"Stelselkleure"</string>
    <string name="keyguard_slot_name_bottom_start" msgid="8747677880200629719">"Links-kortpad"</string>
    <string name="keyguard_slot_name_bottom_end" msgid="2525487375680217083">"Regs-kortpad"</string>
    <string name="keyguard_affordance_none" msgid="1751643933430782312">"Geen"</string>
@@ -116,8 +112,6 @@
    <string name="notifications_section_title" msgid="4283049750376871538">"Kennisgewings"</string>
    <string name="show_notifications_on_lock_screen" msgid="4157744243084646720">"Wys kennisgewings op die sluitskerm"</string>
    <string name="hide_notifications_on_lock_screen" msgid="7413548956484779174">"Versteek kennisgewings op die sluitskerm"</string>
    <!-- no translation found for more_settings_section_title (8524741850115625404) -->
    <skip />
    <!-- no translation found for more_settings_section_description (8787768566854880683) -->
    <skip />
    <string name="more_settings_section_title" msgid="8524741850115625404">"Meer opsies"</string>
    <string name="more_settings_section_description" msgid="8787768566854880683">"Teks op sluitskerm, Wat Speel, en meer"</string>
</resources>
+9 −14
Original line number Diff line number Diff line
@@ -23,16 +23,11 @@
    <string name="clock_description" msgid="3563839327378948">"ብጁ ሰዓት ይምረጡ"</string>
    <string name="clock_picker_entry_content_description" msgid="8377139273468595734">"ብጁ ሰዓትን ይለውጡ"</string>
    <string name="clock_settings_title" msgid="2940654205471453913">"የClock ቅንብሮች"</string>
    <!-- no translation found for clock_color (8081608867289156163) -->
    <skip />
    <!-- no translation found for clock_size (5028923902364418263) -->
    <skip />
    <!-- no translation found for clock_size_dynamic (1023930312455061642) -->
    <skip />
    <!-- no translation found for clock_size_dynamic_description (2776620745774561662) -->
    <skip />
    <!-- no translation found for clock_size_large (3143248715744138979) -->
    <skip />
    <string name="clock_color" msgid="8081608867289156163">"ቀለም"</string>
    <string name="clock_size" msgid="5028923902364418263">"መጠን"</string>
    <string name="clock_size_dynamic" msgid="1023930312455061642">"ተለዋዋጭ"</string>
    <string name="clock_size_dynamic_description" msgid="2776620745774561662">"የClock መጠን በማያ ገጽ ቁልፍ ይዘት መሰረት ይለወጣል"</string>
    <string name="clock_size_large" msgid="3143248715744138979">"ትልቅ"</string>
    <string name="grid_title" msgid="1688173478777254123">"የመተግበሪያ ፍርግርግ"</string>
    <string name="apply_theme_btn" msgid="6293081192321303991">"ተግብር"</string>
    <string name="edit_custom_theme_lbl" msgid="5211377705710775224">"ለማርትዕ መታ ያድርጉ"</string>
@@ -102,6 +97,8 @@
    <string name="preset_color_tab" msgid="3133391839341329314">"መሰረታዊ ቀለሞች"</string>
    <string name="color_changed" msgid="7029571720331641235">"ቀለም ተቀይሯል"</string>
    <string name="adaptive_color_title" msgid="1336508599235896205">"ተለዋዋጭ"</string>
    <!-- no translation found for color_picker_title (9150524788313065978) -->
    <skip />
    <string name="keyguard_slot_name_bottom_start" msgid="8747677880200629719">"የግራ አቋራጭ"</string>
    <string name="keyguard_slot_name_bottom_end" msgid="2525487375680217083">"የቀኝ አቋራጭ"</string>
    <string name="keyguard_affordance_none" msgid="1751643933430782312">"ምንም"</string>
@@ -116,8 +113,6 @@
    <string name="notifications_section_title" msgid="4283049750376871538">"ማሳወቂያዎች"</string>
    <string name="show_notifications_on_lock_screen" msgid="4157744243084646720">"በማያ ገጽ ቁልፉ ላይ ማሳወቂያዎችን አሳይ"</string>
    <string name="hide_notifications_on_lock_screen" msgid="7413548956484779174">"በማያ ገጽ ቁልፉ ላይ ማሳወቂያዎችን ደብቅ"</string>
    <!-- no translation found for more_settings_section_title (8524741850115625404) -->
    <skip />
    <!-- no translation found for more_settings_section_description (8787768566854880683) -->
    <skip />
    <string name="more_settings_section_title" msgid="8524741850115625404">"ተጨማሪ አማራጮች"</string>
    <string name="more_settings_section_description" msgid="8787768566854880683">"ጽሑፍ በማያ ገጽ ቁልፍ፣ አሁን በመጫወት ላይ እና ሌሎችም"</string>
</resources>
+9 −14
Original line number Diff line number Diff line
@@ -23,16 +23,11 @@
    <string name="clock_description" msgid="3563839327378948">"اختيار خلفية شاشة ساعة مخصّصة"</string>
    <string name="clock_picker_entry_content_description" msgid="8377139273468595734">"تغيير خلفية شاشة ساعة مخصّصة"</string>
    <string name="clock_settings_title" msgid="2940654205471453913">"إعدادات الساعة"</string>
    <!-- no translation found for clock_color (8081608867289156163) -->
    <skip />
    <!-- no translation found for clock_size (5028923902364418263) -->
    <skip />
    <!-- no translation found for clock_size_dynamic (1023930312455061642) -->
    <skip />
    <!-- no translation found for clock_size_dynamic_description (2776620745774561662) -->
    <skip />
    <!-- no translation found for clock_size_large (3143248715744138979) -->
    <skip />
    <string name="clock_color" msgid="8081608867289156163">"اللون"</string>
    <string name="clock_size" msgid="5028923902364418263">"الحجم"</string>
    <string name="clock_size_dynamic" msgid="1023930312455061642">"ديناميكي"</string>
    <string name="clock_size_dynamic_description" msgid="2776620745774561662">"يتغير حجم الساعة وفقًا للمحتوى على شاشة القفل."</string>
    <string name="clock_size_large" msgid="3143248715744138979">"كبير"</string>
    <string name="grid_title" msgid="1688173478777254123">"شبكة التطبيقات"</string>
    <string name="apply_theme_btn" msgid="6293081192321303991">"تطبيق"</string>
    <string name="edit_custom_theme_lbl" msgid="5211377705710775224">"انقُر للتعديل."</string>
@@ -102,6 +97,8 @@
    <string name="preset_color_tab" msgid="3133391839341329314">"الألوان الأساسية"</string>
    <string name="color_changed" msgid="7029571720331641235">"تم تغيير اللون."</string>
    <string name="adaptive_color_title" msgid="1336508599235896205">"ألوان ديناميكية"</string>
    <!-- no translation found for color_picker_title (9150524788313065978) -->
    <skip />
    <string name="keyguard_slot_name_bottom_start" msgid="8747677880200629719">"اختصار اليمين"</string>
    <string name="keyguard_slot_name_bottom_end" msgid="2525487375680217083">"اختصار اليسار"</string>
    <string name="keyguard_affordance_none" msgid="1751643933430782312">"بدون أزرار"</string>
@@ -116,8 +113,6 @@
    <string name="notifications_section_title" msgid="4283049750376871538">"الإشعارات"</string>
    <string name="show_notifications_on_lock_screen" msgid="4157744243084646720">"إظهار الإشعارات على شاشة القفل"</string>
    <string name="hide_notifications_on_lock_screen" msgid="7413548956484779174">"إخفاء الإشعارات على شاشة القفل"</string>
    <!-- no translation found for more_settings_section_title (8524741850115625404) -->
    <skip />
    <!-- no translation found for more_settings_section_description (8787768566854880683) -->
    <skip />
    <string name="more_settings_section_title" msgid="8524741850115625404">"خيارات إضافية"</string>
    <string name="more_settings_section_description" msgid="8787768566854880683">"النص على شاشة القفل و\"التعرف التلقائي على الموسيقى\" والمزيد"</string>
</resources>
Loading