diff options
author | Suchi Amalapurapu <asuchitra@google.com> | 2010-03-02 11:15:30 -0800 |
---|---|---|
committer | Suchi Amalapurapu <asuchitra@google.com> | 2010-03-04 12:30:11 -0800 |
commit | f4c4b59f13a0cadd55832004e56ff7b6d827f7f0 (patch) | |
tree | 1e3edad6de039940c806a1fb11dc323f7431c285 /res/drawable | |
parent | 0382a49615e1a409b39d9176c7049e0cd7a66394 (diff) | |
download | packages_apps_settings-f4c4b59f13a0cadd55832004e56ff7b6d827f7f0.zip packages_apps_settings-f4c4b59f13a0cadd55832004e56ff7b6d827f7f0.tar.gz packages_apps_settings-f4c4b59f13a0cadd55832004e56ff7b6d827f7f0.tar.bz2 |
Move application icon to left in InstalledAppDetails.
Fix text overlapping icon issue.
Add new icons for filter options
Diffstat (limited to 'res/drawable')
-rw-r--r-- | res/drawable/ic_tab_all.xml | 21 | ||||
-rw-r--r-- | res/drawable/ic_tab_download.xml | 21 | ||||
-rw-r--r-- | res/drawable/ic_tab_running.xml | 21 | ||||
-rw-r--r-- | res/drawable/ic_tab_sdcard.xml | 21 |
4 files changed, 84 insertions, 0 deletions
diff --git a/res/drawable/ic_tab_all.xml b/res/drawable/ic_tab_all.xml new file mode 100644 index 0000000..9e5756b --- /dev/null +++ b/res/drawable/ic_tab_all.xml @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2008 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_selected="true" android:state_pressed="false" android:drawable="@drawable/ic_tab_selected_all" /> + <item android:drawable="@drawable/ic_tab_unselected_all" /> +</selector> + diff --git a/res/drawable/ic_tab_download.xml b/res/drawable/ic_tab_download.xml new file mode 100644 index 0000000..d126f5b --- /dev/null +++ b/res/drawable/ic_tab_download.xml @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2008 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_selected="true" android:state_pressed="false" android:drawable="@drawable/ic_tab_selected_download" /> + <item android:drawable="@drawable/ic_tab_unselected_download" /> +</selector> + diff --git a/res/drawable/ic_tab_running.xml b/res/drawable/ic_tab_running.xml new file mode 100644 index 0000000..1044acc --- /dev/null +++ b/res/drawable/ic_tab_running.xml @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2008 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_selected="true" android:state_pressed="false" android:drawable="@drawable/ic_tab_selected_running" /> + <item android:drawable="@drawable/ic_tab_unselected_running" /> +</selector> + diff --git a/res/drawable/ic_tab_sdcard.xml b/res/drawable/ic_tab_sdcard.xml new file mode 100644 index 0000000..2088f93 --- /dev/null +++ b/res/drawable/ic_tab_sdcard.xml @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2008 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_selected="true" android:state_pressed="false" android:drawable="@drawable/ic_tab_selected_sdcard" /> + <item android:drawable="@drawable/ic_tab_unselected_sdcard" /> +</selector> + |