diff --git a/Android.bp b/Android.bp index 4e1c9d3d11..73d0fce260 100644 --- a/Android.bp +++ b/Android.bp @@ -64,9 +64,74 @@ filegroup { filegroup { name: "launcher-quickstep-src", srcs: [ - "quickstep/src/**/*.java", "quickstep/src/**/*.kt", + "quickstep/src/**/*.java", ], + device_common_srcs: [ + ":launcher-quickstep-processed-protolog-src", + ], +} + +// Launcher ProtoLog support +filegroup { + name: "launcher-quickstep-unprocessed-protolog-src", + srcs: [ + "quickstep/src_protolog/**/*.java", + ], +} + +java_library { + name: "launcher-quickstep_protolog-groups", + srcs: [ + "quickstep/src_protolog/**/*.java", + ], + static_libs: [ + "protolog-group", + "androidx.annotation_annotation", + "com_android_launcher3_flags_lib", + ], +} + +java_genrule { + name: "launcher-quickstep-processed-protolog-src", + srcs: [ + ":protolog-impl", + ":launcher-quickstep-unprocessed-protolog-src", + ":launcher-quickstep_protolog-groups", + ], + tools: ["protologtool"], + cmd: "$(location protologtool) transform-protolog-calls " + + "--protolog-class com.android.internal.protolog.common.ProtoLog " + + "--loggroups-class com.android.quickstep.util.QuickstepProtoLogGroup " + + "--loggroups-jar $(location :launcher-quickstep_protolog-groups) " + + "--viewer-config-file-path /system_ext/etc/launcher.quickstep.protolog.pb " + + "--output-srcjar $(out) " + + "$(locations :launcher-quickstep-unprocessed-protolog-src)", + out: ["launcher.quickstep.protolog.srcjar"], +} + +java_genrule { + name: "gen-launcher.quickstep.protolog.pb", + srcs: [ + ":launcher-quickstep-unprocessed-protolog-src", + ":launcher-quickstep_protolog-groups", + ], + tools: ["protologtool"], + cmd: "$(location protologtool) generate-viewer-config " + + "--protolog-class com.android.internal.protolog.common.ProtoLog " + + "--loggroups-class com.android.quickstep.util.QuickstepProtoLogGroup " + + "--loggroups-jar $(location :launcher-quickstep_protolog-groups) " + + "--viewer-config-type proto " + + "--viewer-config $(out) " + + "$(locations :launcher-quickstep-unprocessed-protolog-src)", + out: ["launcher.quickstep.protolog.pb"], +} + +prebuilt_etc { + name: "launcher.quickstep.protolog.pb", + system_ext_specific: true, + src: ":gen-launcher.quickstep.protolog.pb", + filename_from_src: true, } // Source code for quickstep dagger @@ -322,6 +387,7 @@ android_library { "//frameworks/libs/systemui:view_capture", "//frameworks/libs/systemui:animationlib", "//frameworks/libs/systemui:contextualeducationlib", + "//frameworks/libs/systemui:msdl", "SystemUI-statsd", "launcher-testing-shared", "androidx.lifecycle_lifecycle-common-java8", @@ -405,6 +471,7 @@ android_library { "SystemUISharedLib", "SettingsLibSettingsTheme", "dagger2", + "protolog-group", ], manifest: "quickstep/AndroidManifest.xml", min_sdk_version: "current", @@ -503,7 +570,10 @@ android_app { "Launcher2", "Launcher3", ], - required: ["privapp_whitelist_com.android.launcher3"], + required: [ + "privapp_whitelist_com.android.launcher3", + "launcher.quickstep.protolog.pb", + ], resource_dirs: ["quickstep/res"], diff --git a/aconfig/launcher.aconfig b/aconfig/launcher.aconfig index 4d78c33200..ac59c35116 100644 --- a/aconfig/launcher.aconfig +++ b/aconfig/launcher.aconfig @@ -64,6 +64,13 @@ flag { bug: "296231746" } +flag { + name: "enable_taskbar_connected_displays" + namespace: "launcher" + description: "Enables connected displays in taskbar." + bug: "362720616" +} + flag { name: "enable_taskbar_customization" namespace: "launcher" @@ -303,6 +310,13 @@ flag { bug: "346408388" } +flag { + name: "all_apps_sheet_for_handheld" + namespace: "launcher" + description: "All Apps will be presented on a bottom sheet in handheld mode" + bug: "374186088" +} + flag { name: "multiline_search_bar" namespace: "launcher" @@ -361,6 +375,13 @@ flag { } } +flag { + name: "work_scheduler_in_work_profile" + namespace: "launcher" + description: "Enables work scheduler view above the work pause button in work profile." + bug: "361589193" +} + flag { name: "one_grid_specs" namespace: "launcher" @@ -426,3 +447,100 @@ flag { description: "Show recent apps in the taskbar overflow." bug: "368119679" } + +flag { + name: "enable_active_gesture_proto_log" + namespace: "launcher" + description: "Enables tracking active gesture logs in ProtoLog" + bug: "293182501" +} + +flag { + name: "enable_recents_window_proto_log" + namespace: "launcher" + description: "Enables tracking recents window logs in ProtoLog" + bug: "292269949" +} + +flag { + name: "enable_state_manager_proto_log" + namespace: "launcher" + description: "Enables tracking state manager logs in ProtoLog" + bug: "292269949" +} + +flag { + name: "coordinate_workspace_scale" + namespace: "launcher" + description: "Ensure that the workspace and hotseat scale doesn't conflict and transitions smoothly between launching and closing apps" + bug: "366403487" + metadata { + purpose: PURPOSE_BUGFIX + } +} + +flag { + name: "enable_tiered_widgets_by_default_in_picker" + namespace: "launcher" + description: "Shows filtered set of widgets by default and an option to show all widgets in the widget picker" + bug: "356127021" +} + +flag { + name: "show_taskbar_pinning_popup_from_anywhere" + namespace: "launcher" + description: "Shows the pinning popup view after long-pressing or right-clicking anywhere on the pinned taskbar" + bug: "297325541" +} + +flag { + name: "enable_launcher_overview_in_window" + namespace: "launcher" + description: "Enables launcher recents opening inside of a window instead of being hosted in launcher activity." + bug: "292269949" +} + +flag { + name: "use_system_radius_for_app_widgets" + namespace: "launcher" + description: "Use system radius for enforced widget corners instead of a separate 16.dp value" + bug: "373351337" + metadata { + purpose: PURPOSE_BUGFIX + } +} + +flag { + name: "enable_contrast_tiles" + namespace: "launcher" + description: "Enable launcher app contrast tiles." + bug: "341217082" +} + +flag { + name: "msdl_feedback" + namespace: "launcher" + description: "Enable MSDL feedback for Launcher interactions" + bug: "377496684" +} + +flag { + name: "taskbar_recents_layout_transition" + namespace: "launcher" + description: "Enable Taskbar LayoutTransition for Recent Apps" + bug: "343521765" +} + +flag { + name: "enable_pinning_app_with_context_menu" + namespace: "launcher" + description: "Add options to pin/unpin to taskbar to app context menus." + bug: "375648361" +} + +flag { + name: "enable_launcher_icon_shapes" + namespace: "launcher" + description: "Enable launcher icon shape customizations" + bug: "348708061" +} \ No newline at end of file diff --git a/aconfig/launcher_overview.aconfig b/aconfig/launcher_overview.aconfig index 23733a4ff3..86e41df56e 100644 --- a/aconfig/launcher_overview.aconfig +++ b/aconfig/launcher_overview.aconfig @@ -36,7 +36,7 @@ flag { name: "enable_large_desktop_windowing_tile" namespace: "launcher_overview" description: "Makes the desktop tiles larger and moves them to the front of the list in Overview." - bug: "353947137" + bug: "357860832" } flag { @@ -47,4 +47,28 @@ flag { metadata { purpose: PURPOSE_BUGFIX } +} + +flag { + name: "enable_desktop_windowing_carousel_detach" + namespace: "launcher_overview" + description: "Makes the desktop windowing task carousel detaches from fullscreen task carousel during quickswitch." + bug: "353947917" +} + +flag { + name: "enable_desktop_exploded_view" + namespace: "launcher_overview" + description: "Enables the non-overlapping layout for desktop windows in Overview mode." + bug: "378011776" +} + +flag { + name: "enable_use_top_visible_activity_for_exclude_from_recent_task" + namespace: "launcher_overview" + description: "Enables using the top visible activity for exclude from recent task instead of the activity indicies." + bug: "342627272" + metadata { + purpose: PURPOSE_BUGFIX + } } \ No newline at end of file diff --git a/go/quickstep/src/com/android/launcher3/AppSharing.java b/go/quickstep/src/com/android/launcher3/AppSharing.java index e15b132f94..a97feccfe1 100644 --- a/go/quickstep/src/com/android/launcher3/AppSharing.java +++ b/go/quickstep/src/com/android/launcher3/AppSharing.java @@ -37,12 +37,13 @@ import android.widget.Toast; import androidx.core.content.FileProvider; +import com.android.internal.annotations.VisibleForTesting; +import com.android.launcher3.logging.StatsLogManager; import com.android.launcher3.model.AppShareabilityChecker; import com.android.launcher3.model.AppShareabilityJobService; import com.android.launcher3.model.AppShareabilityManager; import com.android.launcher3.model.AppShareabilityManager.ShareabilityStatus; import com.android.launcher3.model.data.ItemInfo; -import com.android.launcher3.popup.PopupDataProvider; import com.android.launcher3.popup.SystemShortcut; import com.android.launcher3.views.ActivityContext; @@ -114,17 +115,17 @@ public final class AppSharing { * The Share App system shortcut, used to initiate p2p sharing of a given app */ public final class Share extends SystemShortcut { - private final PopupDataProvider mPopupDataProvider; private final boolean mSharingEnabledForUser; private final Set mBoundViews = Collections.newSetFromMap(new WeakHashMap<>()); private boolean mIsEnabled = true; + private StatsLogManager mStatsLogManager; public Share(Launcher target, ItemInfo itemInfo, View originalView) { super(R.drawable.ic_share, R.string.app_share_drop_target_label, target, itemInfo, originalView); - mPopupDataProvider = target.getPopupDataProvider(); - + mStatsLogManager = ActivityContext.lookupContext(originalView.getContext()) + .getStatsLogManager(); mSharingEnabledForUser = bluetoothSharingEnabled(target); if (!mSharingEnabledForUser) { setEnabled(false); @@ -150,8 +151,7 @@ public final class AppSharing { @Override public void onClick(View view) { - ActivityContext.lookupContext(view.getContext()) - .getStatsLogManager().logger().log(LAUNCHER_SYSTEM_SHORTCUT_APP_SHARE_TAP); + mStatsLogManager.logger().log(LAUNCHER_SYSTEM_SHORTCUT_APP_SHARE_TAP); if (!mIsEnabled) { showCannotShareToast(view.getContext()); return; @@ -240,6 +240,11 @@ public final class AppSharing { public boolean isEnabled() { return mIsEnabled; } + + @VisibleForTesting + void setStatsLogManager(StatsLogManager statsLogManager) { + mStatsLogManager = statsLogManager; + } } /** diff --git a/go/quickstep/src/com/android/quickstep/TaskOverlayFactoryGo.java b/go/quickstep/src/com/android/quickstep/TaskOverlayFactoryGo.java index 0fb9718124..8c2f5d57bc 100644 --- a/go/quickstep/src/com/android/quickstep/TaskOverlayFactoryGo.java +++ b/go/quickstep/src/com/android/quickstep/TaskOverlayFactoryGo.java @@ -149,8 +149,7 @@ public final class TaskOverlayFactoryGo extends TaskOverlayFactory { // Disable Overview Actions for Work Profile apps boolean isManagedProfileTask = UserManager.get(mApplicationContext).isManagedProfile(task.key.userId); - boolean isAllowedByPolicy = mTaskContainer.getThumbnailViewDeprecated().isRealSnapshot() - && !isManagedProfileTask; + boolean isAllowedByPolicy = isRealSnapshot() && !isManagedProfileTask; getActionsView().setCallbacks(new OverlayUICallbacksGoImpl(isAllowedByPolicy, task)); mTaskPackageName = task.key.getPackageName(); mSharedPreferences = LauncherPrefs.getPrefs(mApplicationContext); diff --git a/proguard.flags b/proguard.flags index 31edd8d88c..da00c00b9b 100644 --- a/proguard.flags +++ b/proguard.flags @@ -57,3 +57,7 @@ -keep class com.android.quickstep.** { *; } + +-keep class com.android.internal.protolog.** { + *; +} diff --git a/protos/launcher_atom.proto b/protos/launcher_atom.proto index 823c821c7d..ce99348bb8 100644 --- a/protos/launcher_atom.proto +++ b/protos/launcher_atom.proto @@ -33,6 +33,7 @@ message ItemInfo { FolderIcon folder_icon = 9; Slice slice = 10; SearchActionItem search_action_item = 11; + TaskView task_view = 15; } // When used for launch event, stores the global predictive rank optional int32 rank = 5; @@ -262,6 +263,21 @@ message Task { optional int32 index = 3; } +// TaskView in RecentsView. +message TaskView { + // TaskViewType. + optional int32 type = 1; + + // Index of TaskView in RecentsView. + optional int32 index = 2; + + // ComponentName of the Task. + optional string component_name = 3; + + // Number of tasks in the TaskView. + optional int32 cardinality = 4; +} + // Represents folder in a closed state. message FolderIcon { // Number of items inside folder. diff --git a/quickstep/AndroidManifest-launcher.xml b/quickstep/AndroidManifest-launcher.xml index c6e2d8cb74..80d8154ba1 100644 --- a/quickstep/AndroidManifest-launcher.xml +++ b/quickstep/AndroidManifest-launcher.xml @@ -48,7 +48,7 @@ android:stateNotNeeded="true" android:windowSoftInputMode="adjustPan" android:screenOrientation="unspecified" - android:configChanges="keyboard|keyboardHidden|mcc|mnc|navigation|orientation|screenSize|screenLayout|smallestScreenSize" + android:configChanges="keyboard|keyboardHidden|mcc|mnc|navigation|orientation|screenSize|screenLayout|smallestScreenSize|uiMode" android:resizeableActivity="true" android:resumeWhilePausing="true" android:taskAffinity="" diff --git a/quickstep/AndroidManifest.xml b/quickstep/AndroidManifest.xml index bf198b605f..201c5f6917 100644 --- a/quickstep/AndroidManifest.xml +++ b/quickstep/AndroidManifest.xml @@ -54,6 +54,7 @@ android:protectionLevel="signature|privileged" /> + android:permission="${applicationId}.permission.START_WIDGET_PICKER_ACTIVITY"> diff --git a/quickstep/res/color/all_set_bg_primary.xml b/quickstep/res/color/all_set_bg_primary.xml index 013de7a30c..ce4fb475a6 100644 --- a/quickstep/res/color/all_set_bg_primary.xml +++ b/quickstep/res/color/all_set_bg_primary.xml @@ -15,5 +15,5 @@ --> - + diff --git a/quickstep/res/color/all_set_bg_tertiary.xml b/quickstep/res/color/all_set_bg_tertiary.xml index b58d61c2be..de4bab19c7 100644 --- a/quickstep/res/color/all_set_bg_tertiary.xml +++ b/quickstep/res/color/all_set_bg_tertiary.xml @@ -15,5 +15,5 @@ --> - + diff --git a/quickstep/res/color/bubblebar_drop_target_bg_color.xml b/quickstep/res/color/bubblebar_drop_target_bg_color.xml index bae8c4e028..a91465f0c5 100644 --- a/quickstep/res/color/bubblebar_drop_target_bg_color.xml +++ b/quickstep/res/color/bubblebar_drop_target_bg_color.xml @@ -15,5 +15,5 @@ --> - + \ No newline at end of file diff --git a/quickstep/res/color/menu_item_hover_state_color.xml b/quickstep/res/color/menu_item_hover_state_color.xml index 3c687895c2..eb35769b44 100644 --- a/quickstep/res/color/menu_item_hover_state_color.xml +++ b/quickstep/res/color/menu_item_hover_state_color.xml @@ -1,6 +1,6 @@ - - + + \ No newline at end of file diff --git a/quickstep/res/color/taskbar_minimized_app_indicator_color.xml b/quickstep/res/color/taskbar_minimized_app_indicator_color.xml new file mode 100644 index 0000000000..2703787ff8 --- /dev/null +++ b/quickstep/res/color/taskbar_minimized_app_indicator_color.xml @@ -0,0 +1,19 @@ + + + + + diff --git a/quickstep/res/color/taskbar_running_app_indicator_color.xml b/quickstep/res/color/taskbar_running_app_indicator_color.xml new file mode 100644 index 0000000000..7f2d12d757 --- /dev/null +++ b/quickstep/res/color/taskbar_running_app_indicator_color.xml @@ -0,0 +1,19 @@ + + + + + diff --git a/quickstep/res/drawable/bg_bubble_bar_drop_target.xml b/quickstep/res/drawable/bg_bubble_bar_drop_target.xml index f597cb5cb0..bf86a7ff0d 100644 --- a/quickstep/res/drawable/bg_bubble_bar_drop_target.xml +++ b/quickstep/res/drawable/bg_bubble_bar_drop_target.xml @@ -20,5 +20,5 @@ + android:color="@color/materialColorPrimaryContainer" /> diff --git a/quickstep/res/drawable/bg_bubble_expanded_view_drop_target.xml b/quickstep/res/drawable/bg_bubble_expanded_view_drop_target.xml index 169e396524..8fb5587ec7 100644 --- a/quickstep/res/drawable/bg_bubble_expanded_view_drop_target.xml +++ b/quickstep/res/drawable/bg_bubble_expanded_view_drop_target.xml @@ -22,6 +22,6 @@ + android:color="@color/materialColorPrimaryContainer" /> diff --git a/quickstep/res/drawable/bg_floating_desktop_select.xml b/quickstep/res/drawable/bg_floating_desktop_select.xml index 6481be40c8..a707aab403 100644 --- a/quickstep/res/drawable/bg_floating_desktop_select.xml +++ b/quickstep/res/drawable/bg_floating_desktop_select.xml @@ -19,5 +19,5 @@ android:shape="rectangle"> - + \ No newline at end of file diff --git a/quickstep/res/drawable/bg_overview_clear_all_button.xml b/quickstep/res/drawable/bg_overview_clear_all_button.xml index 0d1227442f..7f58cf8c4f 100644 --- a/quickstep/res/drawable/bg_overview_clear_all_button.xml +++ b/quickstep/res/drawable/bg_overview_clear_all_button.xml @@ -21,7 +21,7 @@ - + \ No newline at end of file diff --git a/quickstep/res/drawable/bg_taskbar_edu_tooltip.xml b/quickstep/res/drawable/bg_taskbar_edu_tooltip.xml index 9e9bb2bf54..e2fe4c001a 100644 --- a/quickstep/res/drawable/bg_taskbar_edu_tooltip.xml +++ b/quickstep/res/drawable/bg_taskbar_edu_tooltip.xml @@ -18,5 +18,5 @@ android:shape="rectangle"> - + \ No newline at end of file diff --git a/quickstep/res/drawable/bg_wellbeing_toast.xml b/quickstep/res/drawable/bg_wellbeing_toast.xml index 418caae537..bb45bb3532 100644 --- a/quickstep/res/drawable/bg_wellbeing_toast.xml +++ b/quickstep/res/drawable/bg_wellbeing_toast.xml @@ -16,6 +16,6 @@ - + \ No newline at end of file diff --git a/quickstep/res/drawable/desktop_mode_ic_taskbar_menu_manage_windows.xml b/quickstep/res/drawable/desktop_mode_ic_taskbar_menu_manage_windows.xml new file mode 100644 index 0000000000..7d912a24c4 --- /dev/null +++ b/quickstep/res/drawable/desktop_mode_ic_taskbar_menu_manage_windows.xml @@ -0,0 +1,19 @@ + + + + + diff --git a/quickstep/res/drawable/ic_chevron_down.xml b/quickstep/res/drawable/ic_chevron_down.xml index b586e5003e..15f7fc8c9a 100644 --- a/quickstep/res/drawable/ic_chevron_down.xml +++ b/quickstep/res/drawable/ic_chevron_down.xml @@ -19,7 +19,7 @@ android:width="48dp" android:height="48dp" android:autoMirrored="true" - android:tint="?attr/materialColorOnSurface" + android:tint="@color/materialColorOnSurface" android:viewportHeight="48" android:viewportWidth="48"> + + + diff --git a/quickstep/res/drawable/rotate_tutorial_warning.xml b/quickstep/res/drawable/rotate_tutorial_warning.xml index 90b7d6466c..2d0c8d268d 100644 --- a/quickstep/res/drawable/rotate_tutorial_warning.xml +++ b/quickstep/res/drawable/rotate_tutorial_warning.xml @@ -21,6 +21,6 @@ android:viewportHeight="960" android:viewportWidth="960"> diff --git a/quickstep/res/layout-land/keyboard_quick_switch_taskview.xml b/quickstep/res/layout-land/keyboard_quick_switch_taskview.xml index d1e56675b8..b44510d47c 100644 --- a/quickstep/res/layout-land/keyboard_quick_switch_taskview.xml +++ b/quickstep/res/layout-land/keyboard_quick_switch_taskview.xml @@ -23,7 +23,7 @@ android:importantForAccessibility="yes" android:background="@drawable/keyboard_quick_switch_task_view_background" android:clipToOutline="true" - launcher:focusBorderColor="?attr/materialColorOutline"> + launcher:focusBorderColor="@color/materialColorOutline"> + launcher:focusBorderColor="@androidprv:color/materialColorOutline"> diff --git a/quickstep/res/layout/customizable_taskbar.xml b/quickstep/res/layout/customizable_taskbar.xml index e1a80aee30..d988cbcf93 100644 --- a/quickstep/res/layout/customizable_taskbar.xml +++ b/quickstep/res/layout/customizable_taskbar.xml @@ -51,20 +51,26 @@ android:layout_width="match_parent" android:layout_height="match_parent"/> - + + + + + android:background="@color/materialColorSurfaceBright"> + \ No newline at end of file diff --git a/quickstep/res/layout/overview_clear_all_button.xml b/quickstep/res/layout/overview_clear_all_button.xml index 40f38f4602..18a6240b43 100644 --- a/quickstep/res/layout/overview_clear_all_button.xml +++ b/quickstep/res/layout/overview_clear_all_button.xml @@ -23,6 +23,6 @@ android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/recents_clear_all" - android:textColor="?attr/materialColorOnSurface" - launcher:focusBorderColor="?attr/materialColorOutline" + android:textColor="@color/materialColorOnSurface" + launcher:focusBorderColor="@color/materialColorOutline" android:textSize="14sp" /> \ No newline at end of file diff --git a/quickstep/res/layout/task.xml b/quickstep/res/layout/task.xml index 760bcdbf11..a7f6b363f4 100644 --- a/quickstep/res/layout/task.xml +++ b/quickstep/res/layout/task.xml @@ -25,8 +25,8 @@ android:clipChildren="false" android:defaultFocusHighlightEnabled="false" android:focusable="true" - launcher:focusBorderColor="?attr/materialColorOutline" - launcher:hoverBorderColor="?attr/materialColorPrimary"> + launcher:focusBorderColor="@color/materialColorOutline" + launcher:hoverBorderColor="@color/materialColorPrimary"> diff --git a/quickstep/res/layout/task_desktop.xml b/quickstep/res/layout/task_desktop.xml index 1564653733..fb515be3a0 100644 --- a/quickstep/res/layout/task_desktop.xml +++ b/quickstep/res/layout/task_desktop.xml @@ -19,20 +19,11 @@ android:id="@+id/task_view_desktop" android:layout_width="match_parent" android:layout_height="match_parent" - android:clipChildren="true" - android:clipToPadding="true" android:contentDescription="@string/recent_task_desktop" android:defaultFocusHighlightEnabled="false" android:focusable="true" - android:padding="0.1dp" - launcher:focusBorderColor="?attr/materialColorOutline" - launcher:hoverBorderColor="?attr/materialColorPrimary"> - - + launcher:focusBorderColor="@color/materialColorOutline" + launcher:hoverBorderColor="@color/materialColorPrimary"> + + + + + + diff --git a/quickstep/res/layout/task_grouped.xml b/quickstep/res/layout/task_grouped.xml index c36a45e86c..4c650b9c2f 100644 --- a/quickstep/res/layout/task_grouped.xml +++ b/quickstep/res/layout/task_grouped.xml @@ -30,8 +30,8 @@ android:clipChildren="false" android:defaultFocusHighlightEnabled="false" android:focusable="true" - launcher:focusBorderColor="?attr/materialColorOutline" - launcher:hoverBorderColor="?attr/materialColorPrimary"> + launcher:focusBorderColor="@color/materialColorOutline" + launcher:hoverBorderColor="@color/materialColorPrimary"> diff --git a/quickstep/res/layout/task_thumbnail.xml b/quickstep/res/layout/task_thumbnail.xml index d90d9169ab..afbcdb5334 100644 --- a/quickstep/res/layout/task_thumbnail.xml +++ b/quickstep/res/layout/task_thumbnail.xml @@ -16,6 +16,7 @@ diff --git a/quickstep/res/layout/task_view_menu_option.xml b/quickstep/res/layout/task_view_menu_option.xml index 5218de02fa..91051f0c2b 100644 --- a/quickstep/res/layout/task_view_menu_option.xml +++ b/quickstep/res/layout/task_view_menu_option.xml @@ -31,7 +31,7 @@ android:layout_height="@dimen/system_shortcut_icon_size" android:layout_marginStart="@dimen/task_menu_option_start_margin" android:layout_gravity="center_horizontal" - android:backgroundTint="?attr/materialColorOnSurface"/> + android:backgroundTint="@color/materialColorOnSurface"/> diff --git a/quickstep/res/layout/taskbar.xml b/quickstep/res/layout/taskbar.xml index e8f3d9deed..54f9ae87df 100644 --- a/quickstep/res/layout/taskbar.xml +++ b/quickstep/res/layout/taskbar.xml @@ -35,17 +35,24 @@ android:layout_width="match_parent" android:layout_height="match_parent"/> - + + + + - - + + + + "Speld vas" "Vormvry" "Rekenaar" + "Skuif na eksterne skerm" "Werkskerm" "Geen onlangse items nie" "Programgebruikinstellings" @@ -154,4 +155,5 @@ "Maak almal toe" "vou %1$s uit" "vou %1$s in" + "Omkring en Soek" diff --git a/quickstep/res/values-am/strings.xml b/quickstep/res/values-am/strings.xml index 0848ddd48e..b9ee381550 100644 --- a/quickstep/res/values-am/strings.xml +++ b/quickstep/res/values-am/strings.xml @@ -22,6 +22,7 @@ "ሰካ" "ነፃ ቅጽ" "ዴስክቶፕ" + "ወደ ውጫዊ ማሳያ አንቀሳቅስ" "ዴስክቶፕ" "ምንም የቅርብ ጊዜ ንጥሎች የሉም" "የመተግበሪያ አጠቃቀም ቅንብሮች" @@ -154,4 +155,5 @@ "ሁሉንም አሰናብት" "%1$sን ዘርጋ" "%1$sን ሰብስብ" + "ለመፈለግ ክበብ" diff --git a/quickstep/res/values-ar/strings.xml b/quickstep/res/values-ar/strings.xml index 501654f0eb..b699d935d9 100644 --- a/quickstep/res/values-ar/strings.xml +++ b/quickstep/res/values-ar/strings.xml @@ -22,6 +22,7 @@ "تثبيت" "شكل مجاني" "الكمبيوتر المكتبي" + "نقل التطبيق إلى شاشة خارجية" "كمبيوتر مكتبي" "ما مِن عناصر تم استخدامها مؤخرًا" "إعدادات استخدام التطبيق" @@ -154,4 +155,5 @@ "إغلاق الكل" "توسيع %1$s" "تصغير %1$s" + "دائرة البحث" diff --git a/quickstep/res/values-as/strings.xml b/quickstep/res/values-as/strings.xml index 1dbab02d17..7599530fb3 100644 --- a/quickstep/res/values-as/strings.xml +++ b/quickstep/res/values-as/strings.xml @@ -22,6 +22,7 @@ "পিন" "Freeform" "ডেস্কটপ" + "বাহ্যিক ডিছপ্লে’লৈ নিয়ক" "ডেস্কটপ" "কোনো শেহতীয়া বস্তু নাই" "এপে ব্যৱহাৰ কৰা ডেটাৰ ছেটিং" @@ -154,4 +155,5 @@ "সকলো অগ্ৰাহ্য কৰক" "%1$s বিস্তাৰ কৰক" "%1$s সংকোচন কৰক" + "সন্ধান কৰিবৰ বাবে বৃত্ত" diff --git a/quickstep/res/values-az/strings.xml b/quickstep/res/values-az/strings.xml index ecede743cd..6c5748d18c 100644 --- a/quickstep/res/values-az/strings.xml +++ b/quickstep/res/values-az/strings.xml @@ -22,6 +22,7 @@ "Sancın" "Sərbəst rejim" "Masaüstü" + "Xarici displeyə köçürün" "Masaüstü" "Son elementlər yoxdur" "Tətbiq istifadə ayarları" @@ -154,4 +155,5 @@ "Hamısını kənarlaşdırın" "genişləndirin: %1$s" "yığcamlaşdırın: %1$s" + "Dairəyə alaraq axtarın" diff --git a/quickstep/res/values-b+sr+Latn/strings.xml b/quickstep/res/values-b+sr+Latn/strings.xml index aa16f3c353..cbcffdf42c 100644 --- a/quickstep/res/values-b+sr+Latn/strings.xml +++ b/quickstep/res/values-b+sr+Latn/strings.xml @@ -22,6 +22,7 @@ "Zakači" "Slobodni oblik" "Računar" + "Premestite na spoljni ekran" "Računari" "Nema nedavnih stavki" "Podešavanja korišćenja aplikacije" @@ -154,4 +155,5 @@ "Odbaci sve" "proširite oblačić %1$s" "skupite oblačić %1$s" + "Pretraga zaokruživanjem" diff --git a/quickstep/res/values-be/strings.xml b/quickstep/res/values-be/strings.xml index 4dcfe62c1c..103e2437bd 100644 --- a/quickstep/res/values-be/strings.xml +++ b/quickstep/res/values-be/strings.xml @@ -22,6 +22,7 @@ "Замацаваць" "Адвольная форма" "Працоўны стол" + "Перамясціць на знешні дысплэй" "Працоўны стол" "Няма новых элементаў" "Налады выкарыстання праграмы" @@ -154,4 +155,5 @@ "Закрыць усе" "%1$s: разгарнуць" "%1$s: згарнуць" + "Абвесці для пошуку" diff --git a/quickstep/res/values-bg/strings.xml b/quickstep/res/values-bg/strings.xml index 8ceef779a8..d6249146ba 100644 --- a/quickstep/res/values-bg/strings.xml +++ b/quickstep/res/values-bg/strings.xml @@ -22,6 +22,7 @@ "Фиксиране" "Свободна форма" "За компютър" + "Преместване към външния екран" "Настолен компютър" "Няма скорошни елементи" "Настройки за използването на приложенията" @@ -154,4 +155,5 @@ "Отхвърляне на всички" "разгъване на %1$s" "свиване на %1$s" + "Търсене с ограждане" diff --git a/quickstep/res/values-bn/strings.xml b/quickstep/res/values-bn/strings.xml index 14b86de345..c7bc2cf999 100644 --- a/quickstep/res/values-bn/strings.xml +++ b/quickstep/res/values-bn/strings.xml @@ -22,6 +22,7 @@ "পিন করুন" "ফ্রি-ফর্ম" "ডেস্কটপ" + "এক্সটার্নাল ডিসপ্লেতে সরিয়ে নিয়ে যান" "ডেস্কটপ" "কোনও সাম্প্রতিক আইটেম নেই" "অ্যাপ ব্যবহারের সেটিংস" @@ -154,4 +155,5 @@ "সব বাতিল করুন" "%1$s বড় করুন" "%1$s আড়াল করুন" + "খোঁজার জন্য সার্কেল বানান" diff --git a/quickstep/res/values-bs/strings.xml b/quickstep/res/values-bs/strings.xml index b60436cb10..cea1921d50 100644 --- a/quickstep/res/values-bs/strings.xml +++ b/quickstep/res/values-bs/strings.xml @@ -22,6 +22,7 @@ "Zakači" "Slobodan oblik" "Radna površina" + "Premještanje na vanjski ekran" "Radna površina" "Nema nedavnih stavki" "Postavke korištenja aplikacije" @@ -154,4 +155,5 @@ "Odbacivanje svega" "proširivanje oblačića %1$s" "sužavanje oblačića %1$s" + "Pretraživanje zaokruživanjem" diff --git a/quickstep/res/values-ca/strings.xml b/quickstep/res/values-ca/strings.xml index 4447c019a1..e2352d795c 100644 --- a/quickstep/res/values-ca/strings.xml +++ b/quickstep/res/values-ca/strings.xml @@ -22,6 +22,7 @@ "Fixa" "Format lliure" "Escriptori" + "Mou a la pantalla externa" "Escriptori" "No hi ha cap element recent" "Configuració d\'ús d\'aplicacions" @@ -154,4 +155,5 @@ "Ignora-ho tot" "desplega %1$s" "replega %1$s" + "Encercla per cercar" diff --git a/quickstep/res/values-cs/strings.xml b/quickstep/res/values-cs/strings.xml index b742db67d7..de550d1827 100644 --- a/quickstep/res/values-cs/strings.xml +++ b/quickstep/res/values-cs/strings.xml @@ -22,6 +22,7 @@ "Připnout" "Neomezený režim" "Počítač" + "Přesunout na externí displej" "Počítač" "Žádné položky z nedávné doby" "Nastavení využití aplikací" @@ -154,4 +155,5 @@ "Zavřít vše" "rozbalit %1$s" "sbalit %1$s" + "Zakroužkuj a hledej" diff --git a/quickstep/res/values-da/strings.xml b/quickstep/res/values-da/strings.xml index 7366688fe4..b022172309 100644 --- a/quickstep/res/values-da/strings.xml +++ b/quickstep/res/values-da/strings.xml @@ -22,6 +22,7 @@ "Fastgør" "Frit format" "Computertilstand" + "Flyt til ekstern skærm" "Computer" "Ingen nye elementer" "Indstillinger for appforbrug" @@ -154,4 +155,5 @@ "Afvis alle" "udvid %1$s" "skjul %1$s" + "Circle to Search" diff --git a/quickstep/res/values-de/strings.xml b/quickstep/res/values-de/strings.xml index 478a7a39ee..f70e40846d 100644 --- a/quickstep/res/values-de/strings.xml +++ b/quickstep/res/values-de/strings.xml @@ -22,6 +22,7 @@ "Fixieren" "Freeform-Modus" "Desktopmodus" + "Auf externes Display verschieben" "Desktopmodus" "Keine kürzlich verwendeten Elemente" "Einstellungen zur App-Nutzung" @@ -154,4 +155,5 @@ "Alle schließen" "„%1$s“ maximieren" "„%1$s“ minimieren" + "Circle to Search" diff --git a/quickstep/res/values-el/strings.xml b/quickstep/res/values-el/strings.xml index e47b423bfb..d7ff2ada02 100644 --- a/quickstep/res/values-el/strings.xml +++ b/quickstep/res/values-el/strings.xml @@ -22,6 +22,7 @@ "Καρφίτσωμα" "Ελεύθερη μορφή" "Υπολογιστής" + "Μετακίνηση σε εξωτερική οθόνη" "Υπολογιστής" "Δεν υπάρχουν πρόσφατα στοιχεία" "Ρυθμίσεις χρήσης εφαρμογής" @@ -154,4 +155,5 @@ "Παράβλεψη όλων" "ανάπτυξη %1$s" "σύμπτυξη %1$s" + "Κυκλώστε για αναζήτηση" diff --git a/quickstep/res/values-en-rAU/strings.xml b/quickstep/res/values-en-rAU/strings.xml index 04b04dde75..6b81b05588 100644 --- a/quickstep/res/values-en-rAU/strings.xml +++ b/quickstep/res/values-en-rAU/strings.xml @@ -22,6 +22,7 @@ "Pin" "Freeform" "Desktop" + "Move to external display" "Desktop" "No recent items" "App usage settings" @@ -154,4 +155,5 @@ "Dismiss all" "expand %1$s" "collapse %1$s" + "Circle to Search" diff --git a/quickstep/res/values-en-rCA/strings.xml b/quickstep/res/values-en-rCA/strings.xml index e0787ca316..da4effbb2c 100644 --- a/quickstep/res/values-en-rCA/strings.xml +++ b/quickstep/res/values-en-rCA/strings.xml @@ -22,6 +22,7 @@ "Pin" "Freeform" "Desktop" + "Move to external display" "Desktop" "No recent items" "App usage settings" @@ -154,4 +155,5 @@ "Dismiss all" "expand %1$s" "collapse %1$s" + "Circle to Search" diff --git a/quickstep/res/values-en-rGB/strings.xml b/quickstep/res/values-en-rGB/strings.xml index 04b04dde75..6b81b05588 100644 --- a/quickstep/res/values-en-rGB/strings.xml +++ b/quickstep/res/values-en-rGB/strings.xml @@ -22,6 +22,7 @@ "Pin" "Freeform" "Desktop" + "Move to external display" "Desktop" "No recent items" "App usage settings" @@ -154,4 +155,5 @@ "Dismiss all" "expand %1$s" "collapse %1$s" + "Circle to Search" diff --git a/quickstep/res/values-en-rIN/strings.xml b/quickstep/res/values-en-rIN/strings.xml index 04b04dde75..6b81b05588 100644 --- a/quickstep/res/values-en-rIN/strings.xml +++ b/quickstep/res/values-en-rIN/strings.xml @@ -22,6 +22,7 @@ "Pin" "Freeform" "Desktop" + "Move to external display" "Desktop" "No recent items" "App usage settings" @@ -154,4 +155,5 @@ "Dismiss all" "expand %1$s" "collapse %1$s" + "Circle to Search" diff --git a/quickstep/res/values-es-rUS/strings.xml b/quickstep/res/values-es-rUS/strings.xml index dd8de5fad4..57333f4381 100644 --- a/quickstep/res/values-es-rUS/strings.xml +++ b/quickstep/res/values-es-rUS/strings.xml @@ -22,6 +22,7 @@ "Fijar" "Formato libre" "Escritorio" + "Mover a pantalla externa" "Computadoras" "No hay elementos recientes" "Configuración de uso de la app" @@ -154,4 +155,5 @@ "Descartar todo" "expandir %1$s" "contraer %1$s" + "Busca con un círculo" diff --git a/quickstep/res/values-es/strings.xml b/quickstep/res/values-es/strings.xml index d8bbc55815..8355a88ca6 100644 --- a/quickstep/res/values-es/strings.xml +++ b/quickstep/res/values-es/strings.xml @@ -22,6 +22,7 @@ "Fijar" "Formato libre" "Escritorio" + "Mover a pantalla externa" "Ordenador" "No hay nada reciente" "Ajustes de uso de la aplicación" @@ -154,4 +155,5 @@ "Cerrar todo" "desplegar %1$s" "contraer %1$s" + "Rodea para buscar" diff --git a/quickstep/res/values-et/strings.xml b/quickstep/res/values-et/strings.xml index 114f3a187e..6192e81797 100644 --- a/quickstep/res/values-et/strings.xml +++ b/quickstep/res/values-et/strings.xml @@ -22,6 +22,7 @@ "Kinnita" "Vabavorm" "Lauaarvuti režiim" + "Liikuge välisele ekraanile" "Töölaud" "Hiljutisi üksusi pole" "Rakenduse kasutuse seaded" @@ -154,4 +155,5 @@ "Loobu kõigist" "Toiminguriba %1$s laiendamine" "Toiminguriba %1$s ahendamine" + "Ring otsimiseks" diff --git a/quickstep/res/values-eu/strings.xml b/quickstep/res/values-eu/strings.xml index 45fa5790d0..de19f15ab6 100644 --- a/quickstep/res/values-eu/strings.xml +++ b/quickstep/res/values-eu/strings.xml @@ -22,6 +22,7 @@ "Ainguratu" "Modu librea" "Ordenagailua" + "Eraman kanpoko pantailara" "Mahaigaina" "Ez dago azkenaldi honetako ezer" "Aplikazioen erabileraren ezarpenak" @@ -154,4 +155,5 @@ "Baztertu guztiak" "zabaldu %1$s" "tolestu %1$s" + "Inguratu bilatzeko" diff --git a/quickstep/res/values-fa/strings.xml b/quickstep/res/values-fa/strings.xml index d3e38000d6..bc14f0bfe9 100644 --- a/quickstep/res/values-fa/strings.xml +++ b/quickstep/res/values-fa/strings.xml @@ -22,6 +22,7 @@ "پین" "Freeform" "حالت رایانه" + "انتقال به نمایشگر خارجی" "رایانه" "چیز جدیدی اینجا نیست" "تنظیمات استفاده از برنامه" @@ -154,4 +155,5 @@ "رد کردن همه" "ازهم باز کردن %1$s" "جمع کردن %1$s" + "حلقه جستجو" diff --git a/quickstep/res/values-fi/strings.xml b/quickstep/res/values-fi/strings.xml index 54a0c23e34..10e469972a 100644 --- a/quickstep/res/values-fi/strings.xml +++ b/quickstep/res/values-fi/strings.xml @@ -22,6 +22,7 @@ "Kiinnitä" "Vapaamuotoinen" "Tietokone" + "Siirrä ulkoiselle näytölle" "Tietokone" "Ei viimeaikaisia kohteita" "Sovelluksen käyttöasetukset" @@ -154,4 +155,5 @@ "Hylkää kaikki" "laajenna %1$s" "tiivistä %1$s" + "Circle to Search" diff --git a/quickstep/res/values-fr-rCA/strings.xml b/quickstep/res/values-fr-rCA/strings.xml index 591c7b7f65..a5ae3df3df 100644 --- a/quickstep/res/values-fr-rCA/strings.xml +++ b/quickstep/res/values-fr-rCA/strings.xml @@ -22,6 +22,7 @@ "Épingler" "Forme libre" "Ordinateur de bureau" + "Passer à un écran externe" "Ordinateur de bureau" "Aucun élément récent" "Paramètres d\'utilisation de l\'appli" @@ -96,7 +97,7 @@ "Paramètres de navigation du système" "Partager" "Capture d\'écran" - "Partager" + "Diviser" "Enr. paire d\'applis" "Toucher une autre appli pour partager l\'écran" "Choisir une autre appli pour utiliser l\'Écran divisé" @@ -154,4 +155,5 @@ "Tout ignorer" "Développer %1$s" "Réduire %1$s" + "Encercler et rechercher" diff --git a/quickstep/res/values-fr/strings.xml b/quickstep/res/values-fr/strings.xml index 6371f30a38..6d2fba2266 100644 --- a/quickstep/res/values-fr/strings.xml +++ b/quickstep/res/values-fr/strings.xml @@ -22,6 +22,7 @@ "Épingler" "Format libre" "Ordinateur" + "Déplacer vers l\'écran externe" "Ordinateur" "Aucun élément récent" "Paramètres de consommation de l\'application" @@ -154,4 +155,5 @@ "Tout fermer" "Développer %1$s" "Réduire %1$s" + "Entourer pour chercher" diff --git a/quickstep/res/values-gl/strings.xml b/quickstep/res/values-gl/strings.xml index 060328405b..d9a78eeb2b 100644 --- a/quickstep/res/values-gl/strings.xml +++ b/quickstep/res/values-gl/strings.xml @@ -22,6 +22,7 @@ "Fixar" "Forma libre" "Escritorio" + "Mover á pantalla externa" "Ordenador" "Non hai elementos recentes" "Configuración do uso de aplicacións" @@ -154,4 +155,5 @@ "Pechar todo" "despregar %1$s" "contraer %1$s" + "Rodear para buscar" diff --git a/quickstep/res/values-gu/strings.xml b/quickstep/res/values-gu/strings.xml index 4a8e9f9642..1bdcaa1d74 100644 --- a/quickstep/res/values-gu/strings.xml +++ b/quickstep/res/values-gu/strings.xml @@ -22,6 +22,7 @@ "પિન કરો" "ફ્રિફોર્મ" "ડેસ્કટૉપ" + "બાહ્ય ડિસ્પ્લે પર ખસેડો" "ડેસ્કટૉપ" "તાજેતરની કોઈ આઇટમ નથી" "ઍપ વપરાશનું સેટિંગ" @@ -154,4 +155,5 @@ "તમામ છોડી દો" "%1$s મોટો કરો" "%1$s નાનો કરો" + "શોધવા માટે વર્તુળ દોરો" diff --git a/quickstep/res/values-hi/strings.xml b/quickstep/res/values-hi/strings.xml index 2cec388ac7..e97aa789c0 100644 --- a/quickstep/res/values-hi/strings.xml +++ b/quickstep/res/values-hi/strings.xml @@ -22,6 +22,7 @@ "पिन करें" "फ़्रीफ़ॉर्म" "डेस्कटॉप" + "बाहरी डिसप्ले पर जाएं" "डेस्कटॉप" "हाल ही का कोई आइटम नहीं है" "ऐप्लिकेशन इस्तेमाल की सेटिंग" @@ -154,4 +155,5 @@ "सभी खारिज करें" "%1$s को बड़ा करें" "%1$s को छोटा करें" + "सर्कल बनाकर ढूंढें" diff --git a/quickstep/res/values-hr/strings.xml b/quickstep/res/values-hr/strings.xml index 86bb8072ee..441a80cc96 100644 --- a/quickstep/res/values-hr/strings.xml +++ b/quickstep/res/values-hr/strings.xml @@ -22,6 +22,7 @@ "Prikvači" "Slobodni oblik" "Računalo" + "Premještanje na vanjski zaslon" "Radna površina" "Nema nedavnih stavki" "Postavke upotrebe aplikacija" @@ -154,4 +155,5 @@ "Odbaci sve" "proširite oblačić %1$s" "sažmite oblačić %1$s" + "Zaokružite i potražite" diff --git a/quickstep/res/values-hu/strings.xml b/quickstep/res/values-hu/strings.xml index 27db3e0b3b..ea296205f3 100644 --- a/quickstep/res/values-hu/strings.xml +++ b/quickstep/res/values-hu/strings.xml @@ -22,6 +22,7 @@ "Kitűzés" "Szabad forma" "Asztali" + "Áthelyezés külső kijelzőre" "Asztali" "Nincsenek mostanában használt elemek" "Alkalmazáshasználati beállítások" @@ -154,4 +155,5 @@ "Az összes elvetése" "%1$s kibontása" "%1$s összecsukása" + "Bekarikázással keresés" diff --git a/quickstep/res/values-hy/strings.xml b/quickstep/res/values-hy/strings.xml index 9a2cb2ee3e..14d715db9b 100644 --- a/quickstep/res/values-hy/strings.xml +++ b/quickstep/res/values-hy/strings.xml @@ -22,6 +22,7 @@ "Ամրացնել" "Կամայական ձև" "Համակարգիչ" + "Տեղափոխել արտաքին էկրան" "Համակարգիչ" "Այստեղ դեռ ոչինչ չկա" "Հավելվածի օգտագործման կարգավորումներ" @@ -154,4 +155,5 @@ "Փակել բոլորը" "%1$s. ծավալել" "%1$s. ծալել" + "Շրջագծել որոնելու համար" diff --git a/quickstep/res/values-in/strings.xml b/quickstep/res/values-in/strings.xml index 797951c699..4039f36c64 100644 --- a/quickstep/res/values-in/strings.xml +++ b/quickstep/res/values-in/strings.xml @@ -22,6 +22,7 @@ "Sematkan" "Format bebas" "Desktop" + "Pindahkan ke layar eksternal" "Desktop" "Tidak ada item yang baru dibuka" "Setelan penggunaan aplikasi" @@ -154,4 +155,5 @@ "Tutup semua" "luaskan %1$s" "ciutkan %1$s" + "Lingkari untuk Menelusuri" diff --git a/quickstep/res/values-is/strings.xml b/quickstep/res/values-is/strings.xml index 68e1da536f..bddca4daa2 100644 --- a/quickstep/res/values-is/strings.xml +++ b/quickstep/res/values-is/strings.xml @@ -22,6 +22,7 @@ "Festa" "Frjálst snið" "Tölva" + "Færa í annað tæki" "Tölva" "Engin nýleg atriði" "Notkunarstillingar forrits" @@ -154,4 +155,5 @@ "Hunsa allt" "stækka %1$s" "minnka %1$s" + "Circle to Search" diff --git a/quickstep/res/values-it/strings.xml b/quickstep/res/values-it/strings.xml index b9e6f623c6..af77be4167 100644 --- a/quickstep/res/values-it/strings.xml +++ b/quickstep/res/values-it/strings.xml @@ -22,6 +22,7 @@ "Blocca su schermo" "Forma libera" "Desktop" + "Sposta sul display esterno" "Desktop" "Nessun elemento recente" "Impostazioni di utilizzo delle app" @@ -154,4 +155,5 @@ "Ignora tutte" "espandi %1$s" "comprimi %1$s" + "Cerchia e Cerca" diff --git a/quickstep/res/values-iw/strings.xml b/quickstep/res/values-iw/strings.xml index 2a016fa962..ad264216ac 100644 --- a/quickstep/res/values-iw/strings.xml +++ b/quickstep/res/values-iw/strings.xml @@ -22,6 +22,7 @@ "הצמדה" "מצב חופשי" "במחשב" + "העברה למסך חיצוני" "מחשב" "אין פריטים אחרונים" "הגדרות שימוש באפליקציה" @@ -154,4 +155,5 @@ "ביטול של הכול" "הרחבה של %1$s" "כיווץ של %1$s" + "מקיפים ומחפשים" diff --git a/quickstep/res/values-ja/strings.xml b/quickstep/res/values-ja/strings.xml index d6a63c8837..a25b2bfd8c 100644 --- a/quickstep/res/values-ja/strings.xml +++ b/quickstep/res/values-ja/strings.xml @@ -22,6 +22,7 @@ "固定" "フリーフォーム" "デスクトップ" + "外部ディスプレイに移動する" "パソコン" "最近のアイテムはありません" "アプリの使用状況の設定" @@ -154,4 +155,5 @@ "すべて解除" "%1$sを開きます" "%1$sを閉じます" + "かこって検索" diff --git a/quickstep/res/values-ka/strings.xml b/quickstep/res/values-ka/strings.xml index d84d53e576..1f877e98f0 100644 --- a/quickstep/res/values-ka/strings.xml +++ b/quickstep/res/values-ka/strings.xml @@ -22,6 +22,7 @@ "ჩამაგრება" "თავისუფალი ფორმა" "დესკტოპი" + "გარე ეკრანზე გადასვლა" "დესკტოპი" "ბოლოს გამოყენებული ერთეულები არ არის" "აპების გამოყენების პარამეტრები" @@ -154,4 +155,5 @@ "ყველას დახურვა" "%1$s-ის გაფართოება" "%1$s-ის ჩაკეცვა" + "ძიება წრის მოხაზვით" diff --git a/quickstep/res/values-kk/strings.xml b/quickstep/res/values-kk/strings.xml index 4cdbfc4d94..5fd172ea37 100644 --- a/quickstep/res/values-kk/strings.xml +++ b/quickstep/res/values-kk/strings.xml @@ -22,6 +22,7 @@ "Бекіту" "Еркін форма" "Компьютер" + "Сыртқы дисплейге ауыстыру" "Жұмыс үстелі" "Соңғы элементтер жоқ" "Қолданбаны пайдалану параметрлері" @@ -154,4 +155,5 @@ "Барлығын жабу" "%1$s: жаю" "%1$s: жию" + "Қоршау арқылы іздеу" diff --git a/quickstep/res/values-km/strings.xml b/quickstep/res/values-km/strings.xml index 5cf1b92737..4c8227e88e 100644 --- a/quickstep/res/values-km/strings.xml +++ b/quickstep/res/values-km/strings.xml @@ -22,6 +22,7 @@ "ខ្ទាស់" "មុខងារទម្រង់សេរី" "ដែសថប" + "ផ្លាស់ទីទៅផ្ទាំងអេក្រង់ខាងក្រៅ" "អេក្រង់ដើម" "មិនមានធាតុថ្មីៗទេ" "ការកំណត់​ការប្រើប្រាស់​កម្មវិធី" @@ -154,4 +155,5 @@ "ច្រានចោលទាំងអស់" "ពង្រីក %1$s" "បង្រួម %1$s" + "គូររង្វង់ដើម្បីស្វែងរក" diff --git a/quickstep/res/values-kn/strings.xml b/quickstep/res/values-kn/strings.xml index 3db01f7dba..5fc27d2f4e 100644 --- a/quickstep/res/values-kn/strings.xml +++ b/quickstep/res/values-kn/strings.xml @@ -22,6 +22,7 @@ "ಪಿನ್ ಮಾಡಿ" "ಮುಕ್ತಸ್ವರೂಪ" "ಡೆಸ್ಕ್‌ಟಾಪ್" + "ಬಾಹ್ಯ ಡಿಸ್‌ಪ್ಲೇಗೆ ಸರಿಸಿ" "ಡೆಸ್ಕ್‌ಟಾಪ್" "ಯಾವುದೇ ಇತ್ತೀಚಿನ ಐಟಂಗಳಿಲ್ಲ" "ಆ್ಯಪ್‌ ಬಳಕೆಯ ಸೆಟ್ಟಿಂಗ್‌ಗಳು" @@ -154,4 +155,5 @@ "ಎಲ್ಲವನ್ನು ವಜಾಗೊಳಿಸಿ" "%1$s ಅನ್ನು ವಿಸ್ತೃತಗೊಳಿಸಿ" "%1$s ಅನ್ನು ಕುಗ್ಗಿಸಿ" + "ಹುಡುಕಲು ಒಂದು ಸರ್ಕಲ್ ರಚಿಸಿ" diff --git a/quickstep/res/values-ko/strings.xml b/quickstep/res/values-ko/strings.xml index 589cc225f6..d6024824c1 100644 --- a/quickstep/res/values-ko/strings.xml +++ b/quickstep/res/values-ko/strings.xml @@ -22,6 +22,7 @@ "고정" "자유 형식" "데스크톱" + "외부 디스플레이로 이동" "데스크톱" "최근 항목이 없습니다." "앱 사용 설정" @@ -154,4 +155,5 @@ "모두 닫기" "%1$s 펼치기" "%1$s 접기" + "서클 투 서치" diff --git a/quickstep/res/values-ky/strings.xml b/quickstep/res/values-ky/strings.xml index faf5675762..e5fed79456 100644 --- a/quickstep/res/values-ky/strings.xml +++ b/quickstep/res/values-ky/strings.xml @@ -22,6 +22,7 @@ "Кадап коюу" "Эркин форма режими" "Компьютер" + "Тышкы экранга жылдыруу" "Компьютер" "Акыркы колдонмолор жок" "Колдонмону пайдалануу параметрлери" @@ -154,4 +155,5 @@ "Баарын четке кагуу" "%1$s жайып көрсөтүү" "%1$s жыйыштыруу" + "Тегеректеп издөө" diff --git a/quickstep/res/values-land/dimens.xml b/quickstep/res/values-land/dimens.xml index 2239f8b033..efdc7de433 100644 --- a/quickstep/res/values-land/dimens.xml +++ b/quickstep/res/values-land/dimens.xml @@ -81,7 +81,7 @@ 48dp 48dp 96dp - 24dp + 48dp 217.6dp diff --git a/quickstep/res/values-lo/strings.xml b/quickstep/res/values-lo/strings.xml index 622db2d1b0..2df1a495b6 100644 --- a/quickstep/res/values-lo/strings.xml +++ b/quickstep/res/values-lo/strings.xml @@ -22,6 +22,7 @@ "ປັກໝຸດ" "ຮູບແບບອິດສະຫລະ" "ເດັສທັອບ" + "ຍ້າຍໄປຫາຈໍສະແດງຜົນພາຍນອກ" "ເດັສທັອບ" "ບໍ່ມີລາຍການຫຼ້າສຸດ" "ການຕັ້ງຄ່າການນຳໃຊ້ແອັບ" @@ -154,4 +155,5 @@ "ປິດທັງໝົດ" "ຂະຫຍາຍ %1$s" "ຫຍໍ້ %1$s ລົງ" + "ແຕ້ມວົງມົນເພື່ອຊອກຫາ" diff --git a/quickstep/res/values-lt/strings.xml b/quickstep/res/values-lt/strings.xml index a95249b508..1d29f571c5 100644 --- a/quickstep/res/values-lt/strings.xml +++ b/quickstep/res/values-lt/strings.xml @@ -22,6 +22,7 @@ "Prisegti" "Laisva forma" "Stalinis kompiuteris" + "Perkelkite į išorinį ekraną" "Stalinis kompiuteris" "Nėra jokių naujausių elementų" "Programos naudojimo nustatymai" @@ -154,4 +155,5 @@ "Atsisakyti visų" "išskleisti „%1$s“" "sutraukti „%1$s“" + "Paieška apibrėžiant" diff --git a/quickstep/res/values-lv/strings.xml b/quickstep/res/values-lv/strings.xml index 1892f6462e..805a59820a 100644 --- a/quickstep/res/values-lv/strings.xml +++ b/quickstep/res/values-lv/strings.xml @@ -22,6 +22,7 @@ "Piespraust" "Brīva forma" "Dators" + "Pārvietošana uz ārējo displeju" "Darbvirsma" "Nav nesenu vienumu." "Lietotņu izmantošanas iestatījumi" @@ -154,4 +155,5 @@ "Nerādīt nevienu" "izvērst “%1$s”" "sakļaut “%1$s”" + "Apvilkt un meklēt" diff --git a/quickstep/res/values-mk/strings.xml b/quickstep/res/values-mk/strings.xml index ce4e1b098e..2634b9417b 100644 --- a/quickstep/res/values-mk/strings.xml +++ b/quickstep/res/values-mk/strings.xml @@ -22,6 +22,7 @@ "Закачи" "Freeform" "Работна површина" + "Префрлете се на надворешниот екран" "За компјутер" "Нема неодамнешни ставки" "Поставки за користење на апликациите" @@ -154,4 +155,5 @@ "Отфрли ги сите" "прошири %1$s" "собери %1$s" + "Пребарување со заокружување" diff --git a/quickstep/res/values-ml/strings.xml b/quickstep/res/values-ml/strings.xml index c15a241bdb..92cad898b2 100644 --- a/quickstep/res/values-ml/strings.xml +++ b/quickstep/res/values-ml/strings.xml @@ -22,6 +22,7 @@ "പിൻ ചെയ്യുക" "ഫ്രീഫോം" "ഡെസ്‌ക്ടോപ്പ്" + "ബാഹ്യ ഡിസ്‌പ്ലേയിലേക്ക് നീക്കുക" "ഡെസ്‌ക്ടോപ്പ്" "സമീപകാല ഇനങ്ങൾ ഒന്നുമില്ല" "ആപ്പ് ഉപയോഗ ക്രമീകരണം" @@ -154,4 +155,5 @@ "എല്ലാം ഡിസ്മിസ് ചെയ്യുക" "%1$s വികസിപ്പിക്കുക" "%1$s ചുരുക്കുക" + "തിരയാൻ വട്ടം വരയ്ക്കൽ" diff --git a/quickstep/res/values-mn/strings.xml b/quickstep/res/values-mn/strings.xml index 1ff7502644..539e1043a3 100644 --- a/quickstep/res/values-mn/strings.xml +++ b/quickstep/res/values-mn/strings.xml @@ -22,6 +22,7 @@ "Бэхлэх" "Чөлөөтэй хувьсах" "Компьютер" + "Гадаад дэлгэц рүү зөөх" "Дэлгэц" "Сүүлийн үеийн зүйл алга" "Апп ашиглалтын тохиргоо" @@ -154,4 +155,5 @@ "Бүгдийг үл хэрэгсэх" "%1$s-г дэлгэх" "%1$s-г хураах" + "Тойруулж зураад хай" diff --git a/quickstep/res/values-mr/strings.xml b/quickstep/res/values-mr/strings.xml index 215ae3f77c..dd2003fc29 100644 --- a/quickstep/res/values-mr/strings.xml +++ b/quickstep/res/values-mr/strings.xml @@ -22,6 +22,7 @@ "पिन करा" "फ्रीफॉर्म" "डेस्कटॉप" + "बाह्य डिस्प्लेवर हलवा" "डेस्कटॉप" "कोणतेही अलीकडील आयटम नाहीत" "अ‍ॅप वापर सेटिंग्ज" @@ -154,4 +155,5 @@ "सर्व डिसमिस करा" "%1$s चा विस्तार करा" "%1$s कोलॅप्स करा" + "शोधण्यासाठी वर्तुळ करा" diff --git a/quickstep/res/values-ms/strings.xml b/quickstep/res/values-ms/strings.xml index a1f19a95a4..af388bc064 100644 --- a/quickstep/res/values-ms/strings.xml +++ b/quickstep/res/values-ms/strings.xml @@ -22,6 +22,7 @@ "Semat" "Bentuk bebas" "Desktop" + "Alihkan kepada paparan luaran" "Desktop" "Tiada item terbaharu" "Tetapan penggunaan apl" @@ -154,4 +155,5 @@ "Ketepikan semua" "kembangkan %1$s" "kuncupkan %1$s" + "Bulatkan untuk Membuat Carian" diff --git a/quickstep/res/values-my/strings.xml b/quickstep/res/values-my/strings.xml index eeb774b367..55b65c8638 100644 --- a/quickstep/res/values-my/strings.xml +++ b/quickstep/res/values-my/strings.xml @@ -22,6 +22,7 @@ "ပင်ထိုးရန်" "အလွတ်ပုံစံ" "ဒက်စ်တော့" + "ပြင်ပဖန်သားပြင်သို့ ရွှေ့ရန်" "ဒက်စ်တော့" "မကြာမီကဖွင့်ထားသည်များ မရှိပါ" "အက်ပ်အသုံးပြုမှု ဆက်တင်များ" @@ -154,4 +155,5 @@ "အားလုံးကို ပယ်ရန်" "%1$s ကို ပိုပြပါ" "%1$s ကို လျှော့ပြပါ" + "ရှာရန် ကွက်၍ဝိုင်းလိုက်ပါ" diff --git a/quickstep/res/values-nb/strings.xml b/quickstep/res/values-nb/strings.xml index b62b7fde0c..077bc0ae09 100644 --- a/quickstep/res/values-nb/strings.xml +++ b/quickstep/res/values-nb/strings.xml @@ -22,6 +22,7 @@ "Fest" "Fritt format" "Skrivebord" + "Flytt til ekstern skjerm" "Skrivebord" "Ingen nylige elementer" "Innstillinger for appbruk" @@ -154,4 +155,5 @@ "Lukk alle" "vis %1$s" "skjul %1$s" + "Circle to Search" diff --git a/quickstep/res/values-ne/strings.xml b/quickstep/res/values-ne/strings.xml index 133b4b99da..0f374bad59 100644 --- a/quickstep/res/values-ne/strings.xml +++ b/quickstep/res/values-ne/strings.xml @@ -22,6 +22,7 @@ "पिन गर्नुहोस्" "फ्रिफर्म" "डेस्कटप" + "सारेर बाह्य डिस्प्लेमा लैजानुहोस्" "डेस्कटप" "हालसालैको कुनै पनि वस्तु छैन" "एपको उपयोगका सेटिङहरू" @@ -154,4 +155,5 @@ "सबै हटाउनुहोस्" "%1$s एक्स्पान्ड गर्नुहोस्" "%1$s कोल्याप्स गर्नुहोस्" + "खोज्न सर्कल बनाउनुहोस्" diff --git a/quickstep/res/values-night/colors.xml b/quickstep/res/values-night/colors.xml index 98e4871da2..7cb85bcc8e 100644 --- a/quickstep/res/values-night/colors.xml +++ b/quickstep/res/values-night/colors.xml @@ -25,7 +25,5 @@ @android:color/system_neutral1_900 - ?attr/materialColorPrimary - ?attr/materialColorPrimaryFixedDim - ?attr/materialColorOnPrimaryFixed + @color/materialColorPrimary \ No newline at end of file diff --git a/quickstep/res/values-night/styles.xml b/quickstep/res/values-night/styles.xml index eb8831068a..0a5e0afd7b 100644 --- a/quickstep/res/values-night/styles.xml +++ b/quickstep/res/values-night/styles.xml @@ -73,16 +73,16 @@ \ No newline at end of file diff --git a/quickstep/res/values-nl/strings.xml b/quickstep/res/values-nl/strings.xml index ee876cfcfc..529516c6a0 100644 --- a/quickstep/res/values-nl/strings.xml +++ b/quickstep/res/values-nl/strings.xml @@ -22,6 +22,7 @@ "Vastzetten" "Vrije vorm" "Desktop" + "Verplaatsen naar extern scherm" "Desktop" "Geen recente items" "Instellingen voor app-gebruik" @@ -154,4 +155,5 @@ "Alles sluiten" "%1$s uitvouwen" "%1$s samenvouwen" + "Circle to Search" diff --git a/quickstep/res/values-or/strings.xml b/quickstep/res/values-or/strings.xml index 3ee59b5194..afc909ddf4 100644 --- a/quickstep/res/values-or/strings.xml +++ b/quickstep/res/values-or/strings.xml @@ -22,6 +22,7 @@ "ପିନ୍‍" "ଫ୍ରିଫର୍ମ" "ଡେସ୍କଟପ" + "ଏକ୍ସଟର୍ନଲ ଡିସପ୍ଲେକୁ ମୁଭ କରନ୍ତୁ" "ଡେସ୍କଟପ" "ବର୍ତ୍ତମାନର କୌଣସି ଆଇଟମ ନାହିଁ" "ଆପ ବ୍ୟବହାର ସେଟିଂସ" @@ -154,4 +155,5 @@ "ସବୁ ଖାରଜ କରନ୍ତୁ" "%1$s ବିସ୍ତାର କରନ୍ତୁ" "%1$s ସଙ୍କୁଚିତ କରନ୍ତୁ" + "ସର୍ଚ୍ଚ କରିବାକୁ ସର୍କଲ କରନ୍ତୁ" diff --git a/quickstep/res/values-pa/strings.xml b/quickstep/res/values-pa/strings.xml index 1e8d52e741..69b33f9ce7 100644 --- a/quickstep/res/values-pa/strings.xml +++ b/quickstep/res/values-pa/strings.xml @@ -22,6 +22,7 @@ "ਪਿੰਨ ਕਰੋ" "ਫ੍ਰੀਫਾਰਮ" "ਡੈਸਕਟਾਪ" + "ਬਾਹਰੀ ਡਿਸਪਲੇ \'ਤੇ ਜਾਓ" "ਡੈਸਕਟਾਪ" "ਕੋਈ ਹਾਲੀਆ ਆਈਟਮ ਨਹੀਂ" "ਐਪ ਵਰਤੋਂ ਦੀਆਂ ਸੈਟਿੰਗਾਂ" @@ -154,4 +155,5 @@ "ਸਭ ਖਾਰਜ ਕਰੋ" "%1$s ਦਾ ਵਿਸਤਾਰ ਕਰੋ" "%1$s ਨੂੰ ਸਮੇਟੋ" + "ਖੋਜਣ ਲਈ ਚੱਕਰ ਬਣਾਓ" diff --git a/quickstep/res/values-pl/strings.xml b/quickstep/res/values-pl/strings.xml index 64adddf55e..88b50538d1 100644 --- a/quickstep/res/values-pl/strings.xml +++ b/quickstep/res/values-pl/strings.xml @@ -22,6 +22,7 @@ "Przypnij" "Tryb dowolny" "Pulpit" + "Przenieś na wyświetlacz zewnętrzny" "Pulpit" "Brak ostatnich elementów" "Ustawienia użycia aplikacji" @@ -154,4 +155,5 @@ "Zamknij wszystkie" "rozwiń dymek: %1$s" "zwiń dymek: %1$s" + "Zaznacz, aby wyszukać" diff --git a/quickstep/res/values-pt-rPT/strings.xml b/quickstep/res/values-pt-rPT/strings.xml index 2167875719..84120a18f0 100644 --- a/quickstep/res/values-pt-rPT/strings.xml +++ b/quickstep/res/values-pt-rPT/strings.xml @@ -22,6 +22,7 @@ "Fixar" "Forma livre" "Computador" + "Mover para o ecrã externo" "Computador" "Nenhum item recente" "Definições de utilização de aplicações" @@ -154,4 +155,5 @@ "Ignorar tudo" "expandir %1$s" "reduzir %1$s" + "Circundar para Pesquisar" diff --git a/quickstep/res/values-pt/strings.xml b/quickstep/res/values-pt/strings.xml index 9309810cdf..3238c99921 100644 --- a/quickstep/res/values-pt/strings.xml +++ b/quickstep/res/values-pt/strings.xml @@ -22,6 +22,7 @@ "Fixar" "Forma livre" "Modo área de trabalho" + "Mover para a tela externa" "Computador" "Nenhum item recente" "Configurações de uso do app" @@ -154,4 +155,5 @@ "Dispensar todos" "abrir %1$s" "fechar %1$s" + "Circule para pesquisar" diff --git a/quickstep/res/values-ro/strings.xml b/quickstep/res/values-ro/strings.xml index 19075cd554..e6aad4738b 100644 --- a/quickstep/res/values-ro/strings.xml +++ b/quickstep/res/values-ro/strings.xml @@ -22,6 +22,7 @@ "Fixează" "Formă liberă" "Desktop" + "Mută pe ecranul extern" "Computer" "Niciun element recent" "Setări de utilizare a aplicației" @@ -154,4 +155,5 @@ "Închide-le pe toate" "extinde %1$s" "restrânge %1$s" + "Încercuiește și caută" diff --git a/quickstep/res/values-ru/strings.xml b/quickstep/res/values-ru/strings.xml index 76c4e1f646..297ae02617 100644 --- a/quickstep/res/values-ru/strings.xml +++ b/quickstep/res/values-ru/strings.xml @@ -22,6 +22,7 @@ "Закрепить" "Произвольная форма" "Мультиоконный режим" + "Перенести на внешний дисплей" "Мультиоконный режим" "Здесь пока ничего нет." "Настройки использования приложения" @@ -154,4 +155,5 @@ "Закрыть все" "Развернуто: %1$s" "Свернуто: %1$s" + "Обвести и найти" diff --git a/quickstep/res/values-si/strings.xml b/quickstep/res/values-si/strings.xml index 0953b38bd1..2c7c672c51 100644 --- a/quickstep/res/values-si/strings.xml +++ b/quickstep/res/values-si/strings.xml @@ -22,6 +22,7 @@ "අමුණන්න" "Freeform" "ඩෙස්ක්ටොපය" + "බාහිර සංදර්ශකය වෙත ගෙන යන්න" "ඩෙස්ක්ටොපය" "මෑත අයිතම නැත" "යෙදුම් භාවිත සැකසීම්" @@ -154,4 +155,5 @@ "සියල්ල ඉවතලන්න" "%1$s දිග හරින්න" "%1$s හකුළන්න" + "සෙවීමට කවයසෙවීමට කවය අදින්න" diff --git a/quickstep/res/values-sk/strings.xml b/quickstep/res/values-sk/strings.xml index 9b682e6034..638e88aa46 100644 --- a/quickstep/res/values-sk/strings.xml +++ b/quickstep/res/values-sk/strings.xml @@ -22,6 +22,7 @@ "Pripnúť" "Voľný režim" "Počítač" + "Presunúť na externú obrazovku" "Počítač" "Žiadne nedávne položky" "Nastavenia využívania aplikácie" @@ -154,4 +155,5 @@ "Zavrieť všetko" "rozbaliť %1$s" "zbaliť %1$s" + "Vyhľadávanie krúžením" diff --git a/quickstep/res/values-sl/strings.xml b/quickstep/res/values-sl/strings.xml index 94de1e0567..30d2c03538 100644 --- a/quickstep/res/values-sl/strings.xml +++ b/quickstep/res/values-sl/strings.xml @@ -22,6 +22,7 @@ "Pripni" "Prosta oblika" "Namizni računalnik" + "Premik v zunanji zaslon" "Namizni način" "Ni nedavnih elementov" "Nastavitve uporabe aplikacij" @@ -154,4 +155,5 @@ "Opusti vse" "razširitev oblačka %1$s" "strnitev oblačka %1$s" + "Iskanje z obkroževanjem" diff --git a/quickstep/res/values-sq/strings.xml b/quickstep/res/values-sq/strings.xml index 29214c9701..b4b67111c6 100644 --- a/quickstep/res/values-sq/strings.xml +++ b/quickstep/res/values-sq/strings.xml @@ -22,6 +22,7 @@ "Gozhdo" "Formë e lirë" "Desktopi" + "Zhvendose tek ekrani i jashtëm" "Desktopi" "Nuk ka asnjë artikull të fundit" "Cilësimet e përdorimit të aplikacionit" @@ -154,4 +155,5 @@ "Hiqi të gjitha" "zgjero %1$s" "palos %1$s" + "Qarko për të kërkuar" diff --git a/quickstep/res/values-sr/strings.xml b/quickstep/res/values-sr/strings.xml index d6e5d03cee..6622217283 100644 --- a/quickstep/res/values-sr/strings.xml +++ b/quickstep/res/values-sr/strings.xml @@ -22,6 +22,7 @@ "Закачи" "Слободни облик" "Рачунар" + "Преместите на спољни екран" "Рачунари" "Нема недавних ставки" "Подешавања коришћења апликације" @@ -154,4 +155,5 @@ "Одбаци све" "проширите облачић %1$s" "скупите облачић %1$s" + "Претрага заокруживањем" diff --git a/quickstep/res/values-sv/strings.xml b/quickstep/res/values-sv/strings.xml index bba98c6fb6..089d1b56a9 100644 --- a/quickstep/res/values-sv/strings.xml +++ b/quickstep/res/values-sv/strings.xml @@ -22,6 +22,7 @@ "Fäst" "Fritt format" "Dator" + "Flytta till extern skärm" "Dator" "Listan är tom" "Inställningar för appanvändning" @@ -154,4 +155,5 @@ "Stäng alla" "utöka %1$s" "komprimera %1$s" + "Circle to Search" diff --git a/quickstep/res/values-sw/strings.xml b/quickstep/res/values-sw/strings.xml index a513139a75..d872287977 100644 --- a/quickstep/res/values-sw/strings.xml +++ b/quickstep/res/values-sw/strings.xml @@ -22,6 +22,7 @@ "Bandika" "Muundo huru" "Kompyuta ya mezani" + "Hamishia programu kwenye skrini ya nje" "Kompyuta ya Mezani" "Hakuna vipengee vya hivi karibuni" "Mipangilio ya matumizi ya programu" @@ -154,4 +155,5 @@ "Ondoa vyote" "panua %1$s" "kunja %1$s" + "Chora Mviringo ili Kutafuta" diff --git a/quickstep/res/values-sw600dp-land/dimens.xml b/quickstep/res/values-sw600dp-land/dimens.xml index 5e9a177b8b..49239aa035 100644 --- a/quickstep/res/values-sw600dp-land/dimens.xml +++ b/quickstep/res/values-sw600dp-land/dimens.xml @@ -33,4 +33,6 @@ 40dp + 24dp + diff --git a/quickstep/res/values-ta/strings.xml b/quickstep/res/values-ta/strings.xml index 73c6c3746f..7bbfabac9b 100644 --- a/quickstep/res/values-ta/strings.xml +++ b/quickstep/res/values-ta/strings.xml @@ -22,6 +22,7 @@ "பின் செய்தல்" "குறிப்பிட்ட வடிவமில்லாத பயன்முறை" "டெஸ்க்டாப்" + "வெளிப்புற டிஸ்ப்ளேவிற்கு நகர்த்துதல்" "டெஸ்க்டாப்" "சமீபத்தியவை எதுவுமில்லை" "ஆப்ஸ் உபயோக அமைப்புகள்" @@ -154,4 +155,5 @@ "அனைத்தையும் மூடும்" "%1$s ஐ விரிவாக்கும்" "%1$s ஐச் சுருக்கும்" + "வட்டமிட்டுத் தேடல்" diff --git a/quickstep/res/values-te/strings.xml b/quickstep/res/values-te/strings.xml index 91ef8463a9..5439e80106 100644 --- a/quickstep/res/values-te/strings.xml +++ b/quickstep/res/values-te/strings.xml @@ -22,6 +22,7 @@ "పిన్ చేయండి" "సంప్రదాయేతర" "డెస్క్‌టాప్" + "ఎక్స్‌టర్నల్ డిస్‌ప్లేకు తరలించండి" "డెస్క్‌టాప్" "ఇటీవలి ఐటెమ్‌లు ఏవీ లేవు" "యాప్ వినియోగ సెట్టింగ్‌లు" @@ -154,4 +155,5 @@ "అన్నింటినీ విస్మరించండి" "%1$sను విస్తరించండి" "%1$sను కుదించండి" + "సెర్చ్ చేయడానికి సర్కిల్ గీయండి" diff --git a/quickstep/res/values-th/strings.xml b/quickstep/res/values-th/strings.xml index 325f37fe2e..30e73e6244 100644 --- a/quickstep/res/values-th/strings.xml +++ b/quickstep/res/values-th/strings.xml @@ -22,6 +22,7 @@ "ปักหมุด" "รูปแบบอิสระ" "เดสก์ท็อป" + "ย้ายไปยังจอแสดงผลภายนอก" "เดสก์ท็อป" "ไม่มีรายการล่าสุด" "การตั้งค่าการใช้แอป" @@ -154,4 +155,5 @@ "ปิดทั้งหมด" "ขยาย %1$s" "ยุบ %1$s" + "วงเพื่อค้นหา" diff --git a/quickstep/res/values-tl/strings.xml b/quickstep/res/values-tl/strings.xml index fac6a52650..583f4193c1 100644 --- a/quickstep/res/values-tl/strings.xml +++ b/quickstep/res/values-tl/strings.xml @@ -22,6 +22,7 @@ "I-pin" "Freeform" "Desktop" + "Ilipat sa external na display" "Desktop" "Walang kamakailang item" "Mga setting ng paggamit ng app" @@ -154,4 +155,5 @@ "I-dismiss lahat" "i-expand ang %1$s" "i-collapse ang %1$s" + "Circle to Search" diff --git a/quickstep/res/values-tr/strings.xml b/quickstep/res/values-tr/strings.xml index 4ae9050a43..6a0b78f449 100644 --- a/quickstep/res/values-tr/strings.xml +++ b/quickstep/res/values-tr/strings.xml @@ -22,6 +22,7 @@ "Sabitle" "Serbest çalışma" "Masaüstü" + "Harici ekrana taşı" "Masaüstü" "Yeni öğe yok" "Uygulama kullanım ayarları" @@ -154,4 +155,5 @@ "Tümünü kapat" "genişlet: %1$s" "daralt: %1$s" + "Seçerek Arat" diff --git a/quickstep/res/values-uk/strings.xml b/quickstep/res/values-uk/strings.xml index 320c2ea10e..d75f8b4dc5 100644 --- a/quickstep/res/values-uk/strings.xml +++ b/quickstep/res/values-uk/strings.xml @@ -22,6 +22,7 @@ "Закріпити" "Довільна форма" "Робочий стіл" + "Перемістити на зовнішній екран" "Комп’ютер" "Немає нещодавніх додатків" "Налаштування використання додатка" @@ -154,4 +155,5 @@ "Закрити все" "розгорнути \"%1$s\"" "згорнути \"%1$s\"" + "Обвести й знайти" diff --git a/quickstep/res/values-ur/strings.xml b/quickstep/res/values-ur/strings.xml index c71625a117..68f838fc64 100644 --- a/quickstep/res/values-ur/strings.xml +++ b/quickstep/res/values-ur/strings.xml @@ -22,6 +22,7 @@ "پن کریں" "فری فارم" "ڈیسک ٹاپ" + "بیرونی ڈسپلے پر متقل کریں" "ڈیسک ٹاپ" "کوئی حالیہ آئٹم نہیں" "ایپ کے استعمال کی ترتیبات" @@ -154,4 +155,5 @@ "سبھی کو برخاست کریں" "%1$s کو پھیلائیں" "%1$s کو سکیڑیں" + "تلاش کرنے کیلئے دائرہ بنائیں" diff --git a/quickstep/res/values-uz/strings.xml b/quickstep/res/values-uz/strings.xml index e37945355a..294be84fe4 100644 --- a/quickstep/res/values-uz/strings.xml +++ b/quickstep/res/values-uz/strings.xml @@ -22,6 +22,7 @@ "Qadash" "Erkin shakl" "Desktop" + "Tashqi displeyga olish" "Desktop" "Yaqinda ishlatilgan ilovalar yo‘q" "Ilovadan foydalanish sozlamalari" @@ -154,4 +155,5 @@ "Hammasini yopish" "%1$sni yoyish" "%1$sni yigʻish" + "Chizib qidirish" diff --git a/quickstep/res/values-vi/strings.xml b/quickstep/res/values-vi/strings.xml index 080b796b31..7eeacde1f6 100644 --- a/quickstep/res/values-vi/strings.xml +++ b/quickstep/res/values-vi/strings.xml @@ -22,6 +22,7 @@ "Ghim" "Dạng tự do" "Máy tính" + "Chuyển sang màn hình ngoài" "Máy tính" "Không có mục gần đây nào" "Cài đặt mức sử dụng ứng dụng" @@ -154,4 +155,5 @@ "Đóng tất cả" "mở rộng %1$s" "thu gọn %1$s" + "Khoanh tròn để tìm kiếm" diff --git a/quickstep/res/values-zh-rCN/strings.xml b/quickstep/res/values-zh-rCN/strings.xml index 84c61cfd79..dc16036fb7 100644 --- a/quickstep/res/values-zh-rCN/strings.xml +++ b/quickstep/res/values-zh-rCN/strings.xml @@ -22,6 +22,7 @@ "固定" "自由窗口" "桌面" + "移至外接显示屏" "桌面设备" "近期没有任何内容" "应用使用设置" @@ -154,4 +155,5 @@ "全部关闭" "展开“%1$s”" "收起“%1$s”" + "圈定即搜" diff --git a/quickstep/res/values-zh-rHK/strings.xml b/quickstep/res/values-zh-rHK/strings.xml index 3d16e8db3c..c8d18eb194 100644 --- a/quickstep/res/values-zh-rHK/strings.xml +++ b/quickstep/res/values-zh-rHK/strings.xml @@ -22,6 +22,7 @@ "固定" "自由形式" "桌面" + "移至外部顯示屏" "桌面" "最近沒有任何項目" "應用程式使用情況設定" @@ -154,4 +155,5 @@ "全部關閉" "打開%1$s" "收埋%1$s" + "一圈即搜" diff --git a/quickstep/res/values-zh-rTW/strings.xml b/quickstep/res/values-zh-rTW/strings.xml index bf0381205e..fd132d2a85 100644 --- a/quickstep/res/values-zh-rTW/strings.xml +++ b/quickstep/res/values-zh-rTW/strings.xml @@ -22,6 +22,7 @@ "固定" "自由形式" "桌面" + "移至外接螢幕" "電腦" "最近沒有任何項目" "應用程式使用情況設定" @@ -154,4 +155,5 @@ "全部關閉" "展開「%1$s」" "收合「%1$s」" + "畫圈搜尋" diff --git a/quickstep/res/values-zu/strings.xml b/quickstep/res/values-zu/strings.xml index d0d0bb646a..46dbbd56d1 100644 --- a/quickstep/res/values-zu/strings.xml +++ b/quickstep/res/values-zu/strings.xml @@ -22,6 +22,7 @@ "Phina" "I-Freeform" "Ideskithophu" + "Hambisa esibonisini sangaphandle" "Ideskithophu" "Azikho izinto zakamuva" "Izilungiselelo zokusetshenziswa kohlelo lokusebenza" @@ -154,4 +155,5 @@ "Chitha konke" "nweba %1$s" "goqa %1$s" + "Khethela Ukusesha" diff --git a/quickstep/res/values/colors.xml b/quickstep/res/values/colors.xml index 4c48bd3f99..42c0478b9f 100644 --- a/quickstep/res/values/colors.xml +++ b/quickstep/res/values/colors.xml @@ -13,7 +13,7 @@ See the License for the specific language governing permissions and limitations under the License. --> - + #fff #39000000 @@ -31,7 +31,6 @@ #99000000 #EBffffff #99000000 - #646464 #ffffff @@ -94,7 +93,5 @@ #f9ab00 - ?attr/materialColorPrimary - ?attr/materialColorPrimaryFixedDim - ?attr/materialColorOnPrimaryFixed + @color/materialColorPrimary \ No newline at end of file diff --git a/quickstep/res/values/config.xml b/quickstep/res/values/config.xml index e8cb5d5241..e8c8505520 100644 --- a/quickstep/res/values/config.xml +++ b/quickstep/res/values/config.xml @@ -33,13 +33,9 @@ com.android.launcher3.taskbar.TaskbarModelCallbacksFactory com.android.launcher3.taskbar.TaskbarViewCallbacksFactory com.android.quickstep.LauncherRestoreEventLoggerImpl - com.android.launcher3.uioverrides.plugins.PluginManagerWrapperImpl com.android.launcher3.taskbar.TaskbarEduTooltipController - com.android.quickstep.contextualeducation.SystemContextualEduStatsManager - - - com.android.launcher3.uioverrides.SystemApiWrapper + @@ -55,6 +51,11 @@ 23 + + 6 + diff --git a/quickstep/res/values/dimens.xml b/quickstep/res/values/dimens.xml index 8957e0d16e..b221b22e80 100644 --- a/quickstep/res/values/dimens.xml +++ b/quickstep/res/values/dimens.xml @@ -111,12 +111,14 @@ 0.0285dp 0.15dp 0.285dp + 0.7dp 1.4dp 36dp 0.5dp 115dp + 36dp 100dp @@ -356,12 +358,10 @@ 48dp 1dp 72dp - 4dp - 14dp - 2dp - 2dp - 12dp - 2dp + 2dp + 12dp + 4dp + 6dp 12dp @@ -424,6 +424,10 @@ 300dp 16dp + 16dp + + + 8dp 60dp @@ -503,6 +507,7 @@ 20dp 32dp 56dp + 24dp 16dp 16dp 4dp diff --git a/quickstep/res/values/ids.xml b/quickstep/res/values/ids.xml index 3091d9e930..c71bb762db 100644 --- a/quickstep/res/values/ids.xml +++ b/quickstep/res/values/ids.xml @@ -19,4 +19,6 @@ + + \ No newline at end of file diff --git a/quickstep/res/values/strings.xml b/quickstep/res/values/strings.xml index 008766b51b..026e25cecd 100644 --- a/quickstep/res/values/strings.xml +++ b/quickstep/res/values/strings.xml @@ -28,6 +28,8 @@ Freeform Desktop + + Move to external display Desktop @@ -360,4 +362,8 @@ expand %1$s collapse %1$s + + + Circle to Search diff --git a/quickstep/res/values/styles.xml b/quickstep/res/values/styles.xml index c423d094bf..5f2a63dc4f 100644 --- a/quickstep/res/values/styles.xml +++ b/quickstep/res/values/styles.xml @@ -124,7 +124,7 @@ - + diff --git a/res/color-v31/popup_shade_first.xml b/res/color-v31/popup_shade_first.xml index be73698c2e..9a71caeb51 100644 --- a/res/color-v31/popup_shade_first.xml +++ b/res/color-v31/popup_shade_first.xml @@ -14,5 +14,5 @@ limitations under the License. --> - + diff --git a/res/color/overview_button.xml b/res/color/overview_button.xml index 0b317bd395..aa6c618ef7 100644 --- a/res/color/overview_button.xml +++ b/res/color/overview_button.xml @@ -2,10 +2,10 @@ \ No newline at end of file diff --git a/res/color/popup_shade_first.xml b/res/color/popup_shade_first.xml index be73698c2e..9a71caeb51 100644 --- a/res/color/popup_shade_first.xml +++ b/res/color/popup_shade_first.xml @@ -14,5 +14,5 @@ limitations under the License. --> - + diff --git a/res/drawable/all_apps_tabs_background.xml b/res/drawable/all_apps_tabs_background.xml index 62927afeb7..d200b9f961 100644 --- a/res/drawable/all_apps_tabs_background.xml +++ b/res/drawable/all_apps_tabs_background.xml @@ -13,36 +13,25 @@ See the License for the specific language governing permissions and limitations under the License. --> - - - - - - - - - - - - - - - - + + + + + + + + + - - - - - - - - + - - \ No newline at end of file + + + + + + + + + + \ No newline at end of file diff --git a/res/drawable/all_apps_tabs_background_selected.xml b/res/drawable/all_apps_tabs_background_selected.xml new file mode 100644 index 0000000000..f7873dab33 --- /dev/null +++ b/res/drawable/all_apps_tabs_background_selected.xml @@ -0,0 +1,27 @@ + + + + + + + + + \ No newline at end of file diff --git a/res/drawable/all_apps_tabs_background_selected_focused.xml b/res/drawable/all_apps_tabs_background_selected_focused.xml new file mode 100644 index 0000000000..28402627ff --- /dev/null +++ b/res/drawable/all_apps_tabs_background_selected_focused.xml @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/res/drawable/all_apps_tabs_background_unselected.xml b/res/drawable/all_apps_tabs_background_unselected.xml new file mode 100644 index 0000000000..4004021dfd --- /dev/null +++ b/res/drawable/all_apps_tabs_background_unselected.xml @@ -0,0 +1,27 @@ + + + + + + + + + \ No newline at end of file diff --git a/res/drawable/all_apps_tabs_background_unselected_focused.xml b/res/drawable/all_apps_tabs_background_unselected_focused.xml new file mode 100644 index 0000000000..3564a0763e --- /dev/null +++ b/res/drawable/all_apps_tabs_background_unselected_focused.xml @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/res/drawable/bg_letter_list_text.xml b/res/drawable/bg_letter_list_text.xml index 427702b045..073730c705 100644 --- a/res/drawable/bg_letter_list_text.xml +++ b/res/drawable/bg_letter_list_text.xml @@ -15,7 +15,7 @@ --> - + - + diff --git a/res/drawable/bg_ps_lock_button.xml b/res/drawable/bg_ps_lock_button.xml index aef1e816ef..7a20e49b22 100644 --- a/res/drawable/bg_ps_lock_button.xml +++ b/res/drawable/bg_ps_lock_button.xml @@ -21,12 +21,12 @@ android:viewportHeight="36"> + android:fillColor="@color/materialColorPrimaryFixedDim"/> + android:fillColor="@color/materialColorOnPrimaryFixed"/> \ No newline at end of file diff --git a/res/drawable/bg_ps_transition_image.xml b/res/drawable/bg_ps_transition_image.xml index dfad3cf5b3..694303c517 100644 --- a/res/drawable/bg_ps_transition_image.xml +++ b/res/drawable/bg_ps_transition_image.xml @@ -23,13 +23,13 @@ + android:fillColor="@color/materialColorOnPrimaryFixed"/> + android:fillColor="@color/materialColorPrimaryFixedDim"/> + android:fillColor="@color/materialColorOnPrimaryFixed"/> \ No newline at end of file diff --git a/res/drawable/bg_ps_unlock_button.xml b/res/drawable/bg_ps_unlock_button.xml index d5eedd293e..563c3f6d68 100644 --- a/res/drawable/bg_ps_unlock_button.xml +++ b/res/drawable/bg_ps_unlock_button.xml @@ -21,9 +21,9 @@ android:viewportHeight="36"> + android:fillColor="@color/materialColorPrimaryFixedDim"/> \ No newline at end of file diff --git a/res/drawable/bg_rounded_corner_bottom_sheet_handle.xml b/res/drawable/bg_rounded_corner_bottom_sheet_handle.xml index a19465dba1..b0bd33bb51 100644 --- a/res/drawable/bg_rounded_corner_bottom_sheet_handle.xml +++ b/res/drawable/bg_rounded_corner_bottom_sheet_handle.xml @@ -16,6 +16,6 @@ - + diff --git a/res/drawable/bg_widgets_header_states_two_pane.xml b/res/drawable/bg_widgets_header_states_two_pane.xml index 5f4b8c66b4..1ec41a9a0a 100644 --- a/res/drawable/bg_widgets_header_states_two_pane.xml +++ b/res/drawable/bg_widgets_header_states_two_pane.xml @@ -14,18 +14,16 @@ limitations under the License. --> - - - - - - + + + + - - - - - - + + + + + + diff --git a/res/drawable/bg_widgets_header_two_pane.xml b/res/drawable/bg_widgets_header_two_pane.xml index ca3feef1f0..e237002898 100644 --- a/res/drawable/bg_widgets_header_two_pane.xml +++ b/res/drawable/bg_widgets_header_two_pane.xml @@ -14,13 +14,10 @@ limitations under the License. --> - - + android:insetTop="@dimen/widget_list_entry_spacing"> + - - + + \ No newline at end of file diff --git a/res/drawable/bg_widgets_header_two_pane_expanded_focused.xml b/res/drawable/bg_widgets_header_two_pane_expanded_focused.xml new file mode 100644 index 0000000000..0ee3d14715 --- /dev/null +++ b/res/drawable/bg_widgets_header_two_pane_expanded_focused.xml @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/res/drawable/bg_widgets_header_two_pane_expanded_unfocused.xml b/res/drawable/bg_widgets_header_two_pane_expanded_unfocused.xml new file mode 100644 index 0000000000..9028ebe270 --- /dev/null +++ b/res/drawable/bg_widgets_header_two_pane_expanded_unfocused.xml @@ -0,0 +1,25 @@ + + + + + + + + + \ No newline at end of file diff --git a/res/drawable/bg_widgets_header_two_pane_unexpanded_focused.xml b/res/drawable/bg_widgets_header_two_pane_unexpanded_focused.xml new file mode 100644 index 0000000000..12dc907bd3 --- /dev/null +++ b/res/drawable/bg_widgets_header_two_pane_unexpanded_focused.xml @@ -0,0 +1,27 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/res/drawable/bg_widgets_header_two_pane_unexpanded_unfocused.xml b/res/drawable/bg_widgets_header_two_pane_unexpanded_unfocused.xml new file mode 100644 index 0000000000..ba26f9fc3e --- /dev/null +++ b/res/drawable/bg_widgets_header_two_pane_unexpanded_unfocused.xml @@ -0,0 +1,23 @@ + + + + + + + + + \ No newline at end of file diff --git a/res/drawable/button_top_rounded_bordered_ripple.xml b/res/drawable/button_top_rounded_bordered_ripple.xml index 13959f6925..723668fb39 100644 --- a/res/drawable/button_top_rounded_bordered_ripple.xml +++ b/res/drawable/button_top_rounded_bordered_ripple.xml @@ -25,7 +25,7 @@ android:topRightRadius="12dp" android:bottomLeftRadius="4dp" android:bottomRightRadius="4dp" /> - + diff --git a/res/drawable/ic_close_work_edu.xml b/res/drawable/ic_close_work_edu.xml index e4053e3ba7..24f61dd543 100644 --- a/res/drawable/ic_close_work_edu.xml +++ b/res/drawable/ic_close_work_edu.xml @@ -20,6 +20,6 @@ android:viewportWidth="960" android:viewportHeight="960"> diff --git a/res/drawable/ic_corp_off.xml b/res/drawable/ic_corp_off.xml index 117258e3bd..e58e1729cf 100644 --- a/res/drawable/ic_corp_off.xml +++ b/res/drawable/ic_corp_off.xml @@ -16,9 +16,9 @@ android:width="24dp" android:height="24dp" android:viewportWidth="24" - android:viewportHeight="24" - android:tint="?android:attr/textColorHint"> + android:viewportHeight="24"> - \ No newline at end of file + android:pathData="M16,6H20C21.11,6 22,6.89 22,8V18.99C22,19.021 21.994,19.05 21.989,19.077C21.984,19.102 21.98,19.126 21.98,19.15L20,17.17V8H10.83L8,5.17V4C8,2.89 8.89,2 10,2H14C15.11,2 16,2.89 16,4V6ZM10,6H14V4H10V6ZM19,19L8,8L6,6L2.81,2.81L1.39,4.22L3.3,6.13C2.54,6.41 2.01,7.14 2.01,8L2,19C2,20.11 2.89,21 4,21H18.17L19.78,22.61L21.19,21.2L20.82,20.83L19,19ZM4,8V19H16.17L5.17,8H4Z" + android:fillColor="@color/materialColorOnPrimary" + android:fillType="evenOdd"/> + diff --git a/res/drawable/ic_desktop_add.xml b/res/drawable/ic_desktop_add.xml new file mode 100644 index 0000000000..fa5e0debf9 --- /dev/null +++ b/res/drawable/ic_desktop_add.xml @@ -0,0 +1,24 @@ + + + + \ No newline at end of file diff --git a/res/drawable/ic_info_no_shadow.xml b/res/drawable/ic_info_no_shadow.xml index 29a81bd27c..31cf51200a 100644 --- a/res/drawable/ic_info_no_shadow.xml +++ b/res/drawable/ic_info_no_shadow.xml @@ -18,7 +18,7 @@ android:height="24dp" android:viewportWidth="24" android:viewportHeight="24" - android:tint="?attr/materialColorOnSurface"> + android:tint="@color/materialColorOnSurface"> + android:tint="@color/materialColorOnSurface"> + android:tint="@color/materialColorOnSurface"> diff --git a/res/drawable/ic_more_horiz_24.xml b/res/drawable/ic_more_horiz_24.xml new file mode 100644 index 0000000000..d46827cede --- /dev/null +++ b/res/drawable/ic_more_horiz_24.xml @@ -0,0 +1,26 @@ + + + + + diff --git a/res/drawable/ic_private_profile_divider_badge.xml b/res/drawable/ic_private_profile_divider_badge.xml new file mode 100644 index 0000000000..92292f6bd7 --- /dev/null +++ b/res/drawable/ic_private_profile_divider_badge.xml @@ -0,0 +1,26 @@ + + + + + + diff --git a/res/drawable/ic_private_profile_letter_list_fast_scroller_badge.xml b/res/drawable/ic_private_profile_letter_list_fast_scroller_badge.xml new file mode 100644 index 0000000000..8d125988c1 --- /dev/null +++ b/res/drawable/ic_private_profile_letter_list_fast_scroller_badge.xml @@ -0,0 +1,28 @@ + + + + + diff --git a/res/drawable/ic_private_space_with_background.xml b/res/drawable/ic_private_space_with_background.xml index cc73f6dafe..d66549d90d 100644 --- a/res/drawable/ic_private_space_with_background.xml +++ b/res/drawable/ic_private_space_with_background.xml @@ -19,13 +19,13 @@ android:height="48dp"> + android:fillColor="@color/materialColorSurfaceContainerLowest" /> + android:fillColor="@color/materialColorOnSurface" /> + android:fillColor="@color/materialColorOnSurface" /> diff --git a/res/drawable/ic_ps_settings.xml b/res/drawable/ic_ps_settings.xml index 47edeb85ef..5453f35776 100644 --- a/res/drawable/ic_ps_settings.xml +++ b/res/drawable/ic_ps_settings.xml @@ -24,9 +24,9 @@ android:pathData="M10,10h20v20h-20z"/> + android:fillColor="@color/materialColorOnSurfaceVariant"/> + android:fillColor="@color/materialColorOnSurfaceVariant"/> \ No newline at end of file diff --git a/res/drawable/ic_schedule.xml b/res/drawable/ic_schedule.xml new file mode 100644 index 0000000000..d57b0a7806 --- /dev/null +++ b/res/drawable/ic_schedule.xml @@ -0,0 +1,25 @@ + + + + diff --git a/res/drawable/ic_uninstall_no_shadow.xml b/res/drawable/ic_uninstall_no_shadow.xml index 6200054f1b..829e590780 100644 --- a/res/drawable/ic_uninstall_no_shadow.xml +++ b/res/drawable/ic_uninstall_no_shadow.xml @@ -18,7 +18,7 @@ android:height="20dp" android:viewportWidth="24.0" android:viewportHeight="24.0" - android:tint="?attr/materialColorOnSurface" > + android:tint="@color/materialColorOnSurface" > diff --git a/res/drawable/icon_menu_arrow_background.xml b/res/drawable/icon_menu_arrow_background.xml index 6345c2b007..1de111ab29 100644 --- a/res/drawable/icon_menu_arrow_background.xml +++ b/res/drawable/icon_menu_arrow_background.xml @@ -21,7 +21,7 @@ android:angle="0" android:startColor="#00000000" android:centerX="0.25" - android:centerColor="?attr/materialColorSurfaceBright" - android:endColor="?attr/materialColorSurfaceBright" /> + android:centerColor="@color/materialColorSurfaceBright" + android:endColor="@color/materialColorSurfaceBright" /> \ No newline at end of file diff --git a/res/drawable/inset_rounded_action_button.xml b/res/drawable/inset_rounded_action_button.xml new file mode 100644 index 0000000000..8ae40c07bb --- /dev/null +++ b/res/drawable/inset_rounded_action_button.xml @@ -0,0 +1,30 @@ + + + + + + + + + diff --git a/res/drawable/popup_background.xml b/res/drawable/popup_background.xml index 4ddd228c68..686456f7ab 100644 --- a/res/drawable/popup_background.xml +++ b/res/drawable/popup_background.xml @@ -15,6 +15,6 @@ --> - + \ No newline at end of file diff --git a/res/drawable/private_space_app_divider.xml b/res/drawable/private_space_app_divider.xml index 1ea12b3328..f92dca73d5 100644 --- a/res/drawable/private_space_app_divider.xml +++ b/res/drawable/private_space_app_divider.xml @@ -16,6 +16,6 @@ - + \ No newline at end of file diff --git a/res/drawable/ps_lock_background.xml b/res/drawable/ps_lock_background.xml index 0be83dbd92..bc66595ac3 100644 --- a/res/drawable/ps_lock_background.xml +++ b/res/drawable/ps_lock_background.xml @@ -21,7 +21,7 @@ - + diff --git a/res/drawable/ps_settings_background.xml b/res/drawable/ps_settings_background.xml index b0c6b5b0d1..7746012d40 100644 --- a/res/drawable/ps_settings_background.xml +++ b/res/drawable/ps_settings_background.xml @@ -18,6 +18,6 @@ android:inset="4dp"> - + \ No newline at end of file diff --git a/res/drawable/rounded_action_button.xml b/res/drawable/rounded_action_button.xml index ebfa996ac5..6ee6d65d1f 100644 --- a/res/drawable/rounded_action_button.xml +++ b/res/drawable/rounded_action_button.xml @@ -17,10 +17,10 @@ - + + android:color="@color/materialColorSurfaceContainerLow" /> diff --git a/res/drawable/widgets_list_expand_button_background.xml b/res/drawable/widgets_list_expand_button_background.xml new file mode 100644 index 0000000000..068b26db43 --- /dev/null +++ b/res/drawable/widgets_list_expand_button_background.xml @@ -0,0 +1,25 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/res/drawable/work_card.xml b/res/drawable/work_card.xml index 01ec947158..0e37d4f7b9 100644 --- a/res/drawable/work_card.xml +++ b/res/drawable/work_card.xml @@ -17,7 +17,7 @@ - + diff --git a/res/drawable/work_mode_fab_background.xml b/res/drawable/work_mode_fab_background.xml index 6be33e86ce..ad795eb478 100644 --- a/res/drawable/work_mode_fab_background.xml +++ b/res/drawable/work_mode_fab_background.xml @@ -18,7 +18,10 @@ - + + diff --git a/res/drawable/work_scheduler_background.xml b/res/drawable/work_scheduler_background.xml new file mode 100644 index 0000000000..50c81837d8 --- /dev/null +++ b/res/drawable/work_scheduler_background.xml @@ -0,0 +1,26 @@ + + + + + + + + + + \ No newline at end of file diff --git a/res/layout/add_item_confirmation_activity.xml b/res/layout/add_item_confirmation_activity.xml index d113a38ac8..2bb2eb3097 100644 --- a/res/layout/add_item_confirmation_activity.xml +++ b/res/layout/add_item_confirmation_activity.xml @@ -71,7 +71,8 @@ android:id="@+id/widget_preview_scroll_view" android:layout_width="match_parent" android:layout_height="0dp" - android:layout_marginVertical="16dp" + android:layout_margin="16dp" + android:background="@drawable/widgets_surface_background" android:layout_weight="1"> + android:layout_height="match_parent"> - \ No newline at end of file + diff --git a/res/layout/widgets_full_sheet_paged_view.xml b/res/layout/widgets_full_sheet_paged_view.xml index 622f0d6aa5..7c577264d3 100644 --- a/res/layout/widgets_full_sheet_paged_view.xml +++ b/res/layout/widgets_full_sheet_paged_view.xml @@ -81,6 +81,7 @@ android:layout_marginTop="8dp" android:layout_marginBottom="8dp" android:background="@drawable/widgets_surface_background" + android:clipToOutline="true" android:orientation="vertical" android:layout_marginHorizontal="@dimen/widget_list_horizontal_margin" android:visibility="gone"> diff --git a/res/layout/widgets_full_sheet_recyclerview.xml b/res/layout/widgets_full_sheet_recyclerview.xml index 5427732c4d..1ce1c55ec4 100644 --- a/res/layout/widgets_full_sheet_recyclerview.xml +++ b/res/layout/widgets_full_sheet_recyclerview.xml @@ -64,6 +64,7 @@ android:layout_marginTop="8dp" android:layout_marginBottom="8dp" android:background="@drawable/widgets_surface_background" + android:clipToOutline="true" android:orientation="vertical" android:visibility="gone"> diff --git a/res/layout/widgets_list_expand_button.xml b/res/layout/widgets_list_expand_button.xml new file mode 100644 index 0000000000..ff2d777a0f --- /dev/null +++ b/res/layout/widgets_list_expand_button.xml @@ -0,0 +1,34 @@ + + +