summaryrefslogtreecommitdiffstats
path: root/res/drawable
diff options
context:
space:
mode:
authorHyunyoung Song <hyunyoungs@google.com>2019-05-13 23:23:05 -0700
committerHyunyoung Song <hyunyoungs@google.com>2019-05-14 10:15:11 -0700
commite751d90c449b388266f8ccf637e090a44b4f31cd (patch)
tree511fba9ff08ed9c1f7f732e6ce5db503edb651eb /res/drawable
parentc857ad80491450eab30866f9c3f4b2c090776bea (diff)
downloadandroid_packages_apps_Trebuchet-e751d90c449b388266f8ccf637e090a44b4f31cd.tar.gz
android_packages_apps_Trebuchet-e751d90c449b388266f8ccf637e090a44b4f31cd.tar.bz2
android_packages_apps_Trebuchet-e751d90c449b388266f8ccf637e090a44b4f31cd.zip
Implement 3 shades of folder icon/container fill color
Bug: 130451254 Change-Id: I36d885a2b0247f1bb84cb98073459853ae723331
Diffstat (limited to 'res/drawable')
-rw-r--r--res/drawable/round_rect_folder.xml21
1 files changed, 21 insertions, 0 deletions
diff --git a/res/drawable/round_rect_folder.xml b/res/drawable/round_rect_folder.xml
new file mode 100644
index 000000000..8b3d06ca9
--- /dev/null
+++ b/res/drawable/round_rect_folder.xml
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+ Copyright (C) 2019 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="?attr/folderFillColor" />
+ <corners android:radius="@dimen/bg_round_rect_radius" />
+</shape>