summaryrefslogtreecommitdiffstats
path: root/res/drawable
diff options
context:
space:
mode:
authorDmitri Plotnikov <dplotnikov@google.com>2011-01-16 15:27:03 -0800
committerDmitri Plotnikov <dplotnikov@google.com>2011-01-16 15:27:03 -0800
commite2092454e13850c551550db9879fa4fa93218c75 (patch)
tree0b6944c8b73f89b18fd924c78b036ed09ff4132c /res/drawable
parent4585efa7c1d05d96278e20fdc8129342475fe7e7 (diff)
downloadandroid_packages_apps_ExactCalculator-e2092454e13850c551550db9879fa4fa93218c75.tar.gz
android_packages_apps_ExactCalculator-e2092454e13850c551550db9879fa4fa93218c75.tar.bz2
android_packages_apps_ExactCalculator-e2092454e13850c551550db9879fa4fa93218c75.zip
New calculator button styles and initial xlarge layouts.
Bug: 3235798 Change-Id: Iad1f46cec8d073d4b01f90f5e5b0b230c0af3f24
Diffstat (limited to 'res/drawable')
-rw-r--r--res/drawable/btn_digit.xml25
-rw-r--r--res/drawable/btn_function.xml24
2 files changed, 49 insertions, 0 deletions
diff --git a/res/drawable/btn_digit.xml b/res/drawable/btn_digit.xml
new file mode 100644
index 0000000..2f91721
--- /dev/null
+++ b/res/drawable/btn_digit.xml
@@ -0,0 +1,25 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2011 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.
+-->
+
+<selector
+ xmlns:android="http://schemas.android.com/apk/res/android">
+
+ <item
+ android:state_pressed="true"
+ android:drawable="@drawable/btn_keyboard_key_light_pressed_holo" />
+ <item
+ android:drawable="@drawable/btn_keyboard_key_light_normal_holo" />
+</selector>
diff --git a/res/drawable/btn_function.xml b/res/drawable/btn_function.xml
new file mode 100644
index 0000000..25a3e66
--- /dev/null
+++ b/res/drawable/btn_function.xml
@@ -0,0 +1,24 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2011 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.
+-->
+
+<selector
+ xmlns:android="http://schemas.android.com/apk/res/android">
+ <item
+ android:state_pressed="true"
+ android:drawable="@drawable/btn_keyboard_key_dark_pressed_holo" />
+ <item
+ android:drawable="@drawable/btn_keyboard_key_dark_normal_holo" />
+</selector>