diff options
Diffstat (limited to 'res')
21 files changed, 97 insertions, 39 deletions
diff --git a/res/drawable-hdpi/ic_tab_selected_all.png b/res/drawable-hdpi/ic_tab_selected_all.png Binary files differnew file mode 100644 index 0000000..d5a7878 --- /dev/null +++ b/res/drawable-hdpi/ic_tab_selected_all.png diff --git a/res/drawable-hdpi/ic_tab_selected_download.png b/res/drawable-hdpi/ic_tab_selected_download.png Binary files differnew file mode 100644 index 0000000..d316c10 --- /dev/null +++ b/res/drawable-hdpi/ic_tab_selected_download.png diff --git a/res/drawable-hdpi/ic_tab_selected_running.png b/res/drawable-hdpi/ic_tab_selected_running.png Binary files differnew file mode 100644 index 0000000..56849f8 --- /dev/null +++ b/res/drawable-hdpi/ic_tab_selected_running.png diff --git a/res/drawable-hdpi/ic_tab_selected_sdcard.png b/res/drawable-hdpi/ic_tab_selected_sdcard.png Binary files differnew file mode 100644 index 0000000..f4bd7d1 --- /dev/null +++ b/res/drawable-hdpi/ic_tab_selected_sdcard.png diff --git a/res/drawable-hdpi/ic_tab_unselected_all.png b/res/drawable-hdpi/ic_tab_unselected_all.png Binary files differnew file mode 100644 index 0000000..2ef5115 --- /dev/null +++ b/res/drawable-hdpi/ic_tab_unselected_all.png diff --git a/res/drawable-hdpi/ic_tab_unselected_download.png b/res/drawable-hdpi/ic_tab_unselected_download.png Binary files differnew file mode 100644 index 0000000..bd74ee9 --- /dev/null +++ b/res/drawable-hdpi/ic_tab_unselected_download.png diff --git a/res/drawable-hdpi/ic_tab_unselected_running.png b/res/drawable-hdpi/ic_tab_unselected_running.png Binary files differnew file mode 100644 index 0000000..f27cb93 --- /dev/null +++ b/res/drawable-hdpi/ic_tab_unselected_running.png diff --git a/res/drawable-hdpi/ic_tab_unselected_sdcard.png b/res/drawable-hdpi/ic_tab_unselected_sdcard.png Binary files differnew file mode 100644 index 0000000..b73b939 --- /dev/null +++ b/res/drawable-hdpi/ic_tab_unselected_sdcard.png diff --git a/res/drawable-mdpi/ic_tab_selected_all.png b/res/drawable-mdpi/ic_tab_selected_all.png Binary files differnew file mode 100644 index 0000000..bdcfc16 --- /dev/null +++ b/res/drawable-mdpi/ic_tab_selected_all.png diff --git a/res/drawable-mdpi/ic_tab_selected_download.png b/res/drawable-mdpi/ic_tab_selected_download.png Binary files differnew file mode 100644 index 0000000..e9d02c8 --- /dev/null +++ b/res/drawable-mdpi/ic_tab_selected_download.png diff --git a/res/drawable-mdpi/ic_tab_selected_running.png b/res/drawable-mdpi/ic_tab_selected_running.png Binary files differnew file mode 100644 index 0000000..5f07d4b --- /dev/null +++ b/res/drawable-mdpi/ic_tab_selected_running.png diff --git a/res/drawable-mdpi/ic_tab_selected_sdcard.png b/res/drawable-mdpi/ic_tab_selected_sdcard.png Binary files differnew file mode 100644 index 0000000..f90c7ea --- /dev/null +++ b/res/drawable-mdpi/ic_tab_selected_sdcard.png diff --git a/res/drawable-mdpi/ic_tab_unselected_all.png b/res/drawable-mdpi/ic_tab_unselected_all.png Binary files differnew file mode 100644 index 0000000..dfd81cc --- /dev/null +++ b/res/drawable-mdpi/ic_tab_unselected_all.png diff --git a/res/drawable-mdpi/ic_tab_unselected_download.png b/res/drawable-mdpi/ic_tab_unselected_download.png Binary files differnew file mode 100644 index 0000000..b7e56d4 --- /dev/null +++ b/res/drawable-mdpi/ic_tab_unselected_download.png diff --git a/res/drawable-mdpi/ic_tab_unselected_running.png b/res/drawable-mdpi/ic_tab_unselected_running.png Binary files differnew file mode 100644 index 0000000..6a72513 --- /dev/null +++ b/res/drawable-mdpi/ic_tab_unselected_running.png diff --git a/res/drawable-mdpi/ic_tab_unselected_sdcard.png b/res/drawable-mdpi/ic_tab_unselected_sdcard.png Binary files differnew file mode 100644 index 0000000..59af3a2 --- /dev/null +++ b/res/drawable-mdpi/ic_tab_unselected_sdcard.png 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> + diff --git a/res/layout/installed_app_details.xml b/res/layout/installed_app_details.xml index 423e3c1..3243672 100644 --- a/res/layout/installed_app_details.xml +++ b/res/layout/installed_app_details.xml @@ -29,53 +29,27 @@ android:paddingBottom="5dip" android:orientation="vertical"> - <!-- App snippet --> - <RelativeLayout + <!-- App snippet with buttons --> + <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" - android:layout_gravity="center_vertical"> + android:layout_gravity="center_vertical" + android:orientation="vertical" + android:paddingRight="6dip" + android:paddingLeft="6dip" + android:paddingTop="5dip" + android:paddingBottom="5dip" > - <LinearLayout - android:orientation="vertical" - android:layout_alignParentLeft="true" - android:layout_width="match_parent" - android:layout_height="wrap_content" - android:paddingTop="6dip" - android:paddingBottom="6dip" - android:paddingRight="6dip" - android:paddingLeft="6dip" > - <!-- application name --> - <TextView android:id="@+id/app_name" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:textAppearance="?android:attr/textAppearanceMedium" - android:textStyle="bold" - android:singleLine="true" - android:ellipsize="marquee" - android:layout_marginBottom="2dip" /> - <!-- application version --> - <TextView android:id="@+id/app_version" - android:layout_marginTop="-4dip" - android:layout_gravity="center_vertical" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:textAppearance="?android:attr/textAppearanceSmall" /> - </LinearLayout> + <!-- Application snippet label, version and icon --> + <include + layout="@layout/manage_applications_item" + android:id="@+id/app_snippet"/> - <!-- application icon --> - <ImageView android:id="@+id/app_icon" - android:layout_width="@android:dimen/app_icon_size" - android:layout_height="@android:dimen/app_icon_size" - android:layout_alignParentRight="true" - android:paddingTop="6dip" - android:paddingBottom="6dip" - android:paddingRight="6dip" - android:scaleType="fitCenter" /> - </RelativeLayout> <!-- Force stop and uninstall buttons --> <include layout="@layout/two_buttons_panel" android:id="@+id/control_buttons_panel"/> + </LinearLayout> <TextView style="?android:attr/listSeparatorTextViewStyle" |