diff options
| author | 2012-08-03 15:58:12 -0700 | |
|---|---|---|
| committer | 2012-08-03 16:17:14 -0700 | |
| commit | 5e80cacfad7a09aea9e255fc7b5bfeb30989d1a8 (patch) | |
| tree | 79ff5ab0015e8d59b4c128e29677214e4c039f7a | |
| parent | 18edb81172daa9b98b53d226d94fc03249b1aded (diff) | |
Replace stretched background textures with real gradients
Change-Id: I320733aaef191318d32fa823d9a6140585f49417
| -rw-r--r-- | core/res/res/drawable-nodpi/background_holo_dark.png | bin | 2118 -> 0 bytes | |||
| -rw-r--r-- | core/res/res/drawable-nodpi/background_holo_light.png | bin | 14295 -> 0 bytes | |||
| -rw-r--r-- | core/res/res/drawable/background_holo_dark.xml | 22 | ||||
| -rw-r--r-- | core/res/res/drawable/background_holo_light.xml | 22 |
4 files changed, 44 insertions, 0 deletions
diff --git a/core/res/res/drawable-nodpi/background_holo_dark.png b/core/res/res/drawable-nodpi/background_holo_dark.png Binary files differdeleted file mode 100644 index 85bd6f7e404b..000000000000 --- a/core/res/res/drawable-nodpi/background_holo_dark.png +++ /dev/null diff --git a/core/res/res/drawable-nodpi/background_holo_light.png b/core/res/res/drawable-nodpi/background_holo_light.png Binary files differdeleted file mode 100644 index 5fb4a9dc0b1f..000000000000 --- a/core/res/res/drawable-nodpi/background_holo_light.png +++ /dev/null diff --git a/core/res/res/drawable/background_holo_dark.xml b/core/res/res/drawable/background_holo_dark.xml new file mode 100644 index 000000000000..7cfae4dc740e --- /dev/null +++ b/core/res/res/drawable/background_holo_dark.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2012 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"> + <gradient + android:startColor="#ff000000" + android:endColor="#ff272d33" + android:angle="270" /> +</shape> diff --git a/core/res/res/drawable/background_holo_light.xml b/core/res/res/drawable/background_holo_light.xml new file mode 100644 index 000000000000..fbc97b87ea7d --- /dev/null +++ b/core/res/res/drawable/background_holo_light.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2012 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"> + <gradient + android:startColor="#ffe8e8e8" + android:endColor="#fff3f3f3" + android:angle="270" /> +</shape> |