Merge "Update app widget resize frame UI." into sc-dev
Before Width: | Height: | Size: 187 B |
Before Width: | Height: | Size: 256 B |
Before Width: | Height: | Size: 156 B |
Before Width: | Height: | Size: 206 B |
Before Width: | Height: | Size: 209 B |
Before Width: | Height: | Size: 369 B |
Before Width: | Height: | Size: 179 B |
Before Width: | Height: | Size: 605 B |
Before Width: | Height: | Size: 194 B |
Before Width: | Height: | Size: 826 B |
|
@ -0,0 +1,22 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright (C) 2021 The Android Open Source Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle">
|
||||
<solid android:color="@android:color/transparent" />
|
||||
<corners android:radius="@android:dimen/system_app_widget_background_radius" />
|
||||
<stroke android:width="2dp" android:color="?android:attr/colorAccent" />
|
||||
</shape>
|
|
@ -18,15 +18,20 @@
|
|||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:background="@drawable/widget_resize_shadow"
|
||||
android:foreground="@drawable/widget_resize_frame"
|
||||
android:foregroundTint="?attr/workspaceTextColor"
|
||||
android:padding="0dp">
|
||||
|
||||
<FrameLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent" >
|
||||
|
||||
<!-- Frame -->
|
||||
<ImageView
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_gravity="center"
|
||||
android:layout_margin="@dimen/resize_frame_margin"
|
||||
android:src="@drawable/widget_resize_frame" />
|
||||
|
||||
<!-- Left -->
|
||||
<ImageView
|
||||
android:layout_width="wrap_content"
|
||||
|
@ -34,7 +39,7 @@
|
|||
android:layout_gravity="left|center_vertical"
|
||||
android:layout_marginLeft="@dimen/widget_handle_margin"
|
||||
android:src="@drawable/ic_widget_resize_handle"
|
||||
android:tint="?attr/workspaceTextColor" />
|
||||
android:tint="?android:attr/colorAccent" />
|
||||
|
||||
<!-- Top -->
|
||||
<ImageView
|
||||
|
@ -43,7 +48,7 @@
|
|||
android:layout_gravity="top|center_horizontal"
|
||||
android:layout_marginTop="@dimen/widget_handle_margin"
|
||||
android:src="@drawable/ic_widget_resize_handle"
|
||||
android:tint="?attr/workspaceTextColor" />
|
||||
android:tint="?android:attr/colorAccent" />
|
||||
|
||||
<!-- Right -->
|
||||
<ImageView
|
||||
|
@ -52,7 +57,7 @@
|
|||
android:layout_gravity="right|center_vertical"
|
||||
android:layout_marginRight="@dimen/widget_handle_margin"
|
||||
android:src="@drawable/ic_widget_resize_handle"
|
||||
android:tint="?attr/workspaceTextColor" />
|
||||
android:tint="?android:attr/colorAccent" />
|
||||
|
||||
<!-- Bottom -->
|
||||
<ImageView
|
||||
|
@ -61,7 +66,7 @@
|
|||
android:layout_gravity="bottom|center_horizontal"
|
||||
android:layout_marginBottom="@dimen/widget_handle_margin"
|
||||
android:src="@drawable/ic_widget_resize_handle"
|
||||
android:tint="?attr/workspaceTextColor" />
|
||||
android:tint="?android:attr/colorAccent" />
|
||||
|
||||
</FrameLayout>
|
||||
</com.android.launcher3.AppWidgetResizeFrame>
|
|
@ -52,6 +52,7 @@
|
|||
<!-- App Widget resize frame -->
|
||||
<dimen name="widget_handle_margin">13dp</dimen>
|
||||
<dimen name="resize_frame_background_padding">24dp</dimen>
|
||||
<dimen name="resize_frame_margin">22dp</dimen>
|
||||
|
||||
<!-- Fast scroll -->
|
||||
<dimen name="fastscroll_track_min_width">6dp</dimen>
|
||||
|
|