diff options
author | John Spurlock <jspurlock@google.com> | 2014-05-07 17:49:08 -0400 |
---|---|---|
committer | John Spurlock <jspurlock@google.com> | 2014-05-13 18:43:40 -0400 |
commit | af8d6c44f06d2f8baac2c5774a9efdae3fc36797 (patch) | |
tree | 70d8104cd4efd9c84ea774b31a252ec7032f83a8 /packages/SystemUI/res/drawable/qs_panel_background.xml | |
parent | 58bfed927de858757e40195c1a77d2a9f385ff91 (diff) | |
download | frameworks_base-af8d6c44f06d2f8baac2c5774a9efdae3fc36797.zip frameworks_base-af8d6c44f06d2f8baac2c5774a9efdae3fc36797.tar.gz frameworks_base-af8d6c44f06d2f8baac2c5774a9efdae3fc36797.tar.bz2 |
New quick settings implementation.
Bug:14133785
Change-Id: I7f57f8e7ebcc3e1a06fa5204f477470f14299e1f
Diffstat (limited to 'packages/SystemUI/res/drawable/qs_panel_background.xml')
-rw-r--r-- | packages/SystemUI/res/drawable/qs_panel_background.xml | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/packages/SystemUI/res/drawable/qs_panel_background.xml b/packages/SystemUI/res/drawable/qs_panel_background.xml new file mode 100644 index 0000000..c324976 --- /dev/null +++ b/packages/SystemUI/res/drawable/qs_panel_background.xml @@ -0,0 +1,23 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2014 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. +--> +<inset xmlns:android="http://schemas.android.com/apk/res/android" + android:insetLeft="@dimen/notification_side_padding" + android:insetRight="@dimen/notification_side_padding"> + <shape> + <solid android:color="@color/system_primary_color" /> + <corners android:radius="@*android:dimen/notification_quantum_rounded_rect_radius" /> + </shape> +</inset> |