mirror of
https://github.com/LawnchairLauncher/lawnchair.git
synced 2026-02-19 10:48:19 +00:00
> workspaceTextColor was not clearly defined to white and relied on HomeScreenElementTheme > Not all attributes were defined in sw720dp. Created a interm style to avoid such errors > Applying proper tint to resize frame > Fixing shadow colors for homescreen icon Change-Id: If8441011c968291de50b2fd8d7612ce3d5353b95
62 lines
2.4 KiB
XML
62 lines
2.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- Copyright (C) 2016 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.
|
|
-->
|
|
|
|
<com.android.launcher3.AppWidgetResizeFrame
|
|
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" >
|
|
|
|
<!-- Left -->
|
|
<ImageView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="left|center_vertical"
|
|
android:layout_marginLeft="@dimen/widget_handle_margin"
|
|
android:src="@drawable/ic_widget_resize_handle"
|
|
android:tint="?attr/workspaceTextColor" />
|
|
|
|
<!-- Top -->
|
|
<ImageView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="top|center_horizontal"
|
|
android:layout_marginTop="@dimen/widget_handle_margin"
|
|
android:src="@drawable/ic_widget_resize_handle"
|
|
android:tint="?attr/workspaceTextColor" />
|
|
|
|
<!-- Right -->
|
|
<ImageView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="right|center_vertical"
|
|
android:layout_marginRight="@dimen/widget_handle_margin"
|
|
android:src="@drawable/ic_widget_resize_handle"
|
|
android:tint="?attr/workspaceTextColor" />
|
|
|
|
<!-- Bottom -->
|
|
<ImageView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="bottom|center_horizontal"
|
|
android:layout_marginBottom="@dimen/widget_handle_margin"
|
|
android:src="@drawable/ic_widget_resize_handle"
|
|
android:tint="?attr/workspaceTextColor" />
|
|
|
|
</com.android.launcher3.AppWidgetResizeFrame> |