diff options
author | Bryan Owens <djbryan3540@gmail.com> | 2015-12-11 01:25:01 -0600 |
---|---|---|
committer | Clark Scheff <clark@cyngn.com> | 2015-12-29 09:48:24 -0800 |
commit | 0e9c897c528e54cbbee48df206b3f7ff7e8664f0 (patch) | |
tree | 9f83296fb775b07d4a869b9dc03fdfe3996d0838 /packages | |
parent | 255eb8fa4b8eae46f7dc69c7d64a446854545e40 (diff) | |
download | frameworks_base-0e9c897c528e54cbbee48df206b3f7ff7e8664f0.zip frameworks_base-0e9c897c528e54cbbee48df206b3f7ff7e8664f0.tar.gz frameworks_base-0e9c897c528e54cbbee48df206b3f7ff7e8664f0.tar.bz2 |
Themes: Expose hard code color for divider sim pin
Change-Id: I9b5799e6eebf33eef60a1f5bb341fbe82901615f
Signed-off-by: Bryan Owens <djbryan3540@gmail.com>
Diffstat (limited to 'packages')
4 files changed, 22 insertions, 3 deletions
diff --git a/packages/Keyguard/res/layout/keyguard_pin_view.xml b/packages/Keyguard/res/layout/keyguard_pin_view.xml index d3fb982..b0a86bb 100644 --- a/packages/Keyguard/res/layout/keyguard_pin_view.xml +++ b/packages/Keyguard/res/layout/keyguard_pin_view.xml @@ -78,7 +78,7 @@ android:layout_width="match_parent" android:layout_height="1dp" android:layout_alignParentBottom="true" - android:background="#28FFFFFF" + android:background="@color/keyguard_sim_view_divider" /> </com.android.keyguard.AlphaOptimizedRelativeLayout> <LinearLayout diff --git a/packages/Keyguard/res/layout/keyguard_sim_pin_view.xml b/packages/Keyguard/res/layout/keyguard_sim_pin_view.xml index b0a93e6..fe514a6 100644 --- a/packages/Keyguard/res/layout/keyguard_sim_pin_view.xml +++ b/packages/Keyguard/res/layout/keyguard_sim_pin_view.xml @@ -83,7 +83,7 @@ android:layout_width="match_parent" android:layout_height="1dp" android:layout_alignParentBottom="true" - android:background="#28FFFFFF" + android:background="@color/keyguard_sim_view_divider" /> </RelativeLayout> <LinearLayout diff --git a/packages/Keyguard/res/layout/keyguard_sim_puk_view.xml b/packages/Keyguard/res/layout/keyguard_sim_puk_view.xml index cf41bd3..30cc815 100644 --- a/packages/Keyguard/res/layout/keyguard_sim_puk_view.xml +++ b/packages/Keyguard/res/layout/keyguard_sim_puk_view.xml @@ -84,7 +84,7 @@ android:layout_width="match_parent" android:layout_height="1dp" android:layout_alignParentBottom="true" - android:background="#28FFFFFF" + android:background="@color/keyguard_sim_view_divider" /> </RelativeLayout> <LinearLayout diff --git a/packages/Keyguard/res/values/cm_colors.xml b/packages/Keyguard/res/values/cm_colors.xml new file mode 100644 index 0000000..ffdc532 --- /dev/null +++ b/packages/Keyguard/res/values/cm_colors.xml @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2015 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. +--> +<resources> + + <color name="keyguard_sim_view_divider">#28FFFFFF</color> +</resources> |