summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorJoe Onorato <joeo@android.com>2010-06-07 10:24:36 -0700
committerJoe Onorato <joeo@android.com>2010-06-09 14:33:30 -0700
commit7a0f36bd93ad8a5b8cb3e1fe56dbdb43a0ad3a57 (patch)
tree04a00561e8e2ec8b8c883d6fb31b3a6b0570ba51 /core
parent9e875fcb55dad6795e823207693c5ca877941d3e (diff)
downloadframeworks_base-7a0f36bd93ad8a5b8cb3e1fe56dbdb43a0ad3a57.zip
frameworks_base-7a0f36bd93ad8a5b8cb3e1fe56dbdb43a0ad3a57.tar.gz
frameworks_base-7a0f36bd93ad8a5b8cb3e1fe56dbdb43a0ad3a57.tar.bz2
Move status_bar_latest_event and LatestItemView into SystemUI.apk.
Then, now that StatusBarManagerService is the only thing in that package, move it up to the regular services package. (I've been waiting for 4 years to delete that package!) Change-Id: If5faf44641319fd19e486d1f4e5bc1c6dfcff3ad
Diffstat (limited to 'core')
-rw-r--r--core/res/res/drawable/status_bar_item_background.xml2
-rw-r--r--core/res/res/layout/status_bar_latest_event.xml24
2 files changed, 1 insertions, 25 deletions
diff --git a/core/res/res/drawable/status_bar_item_background.xml b/core/res/res/drawable/status_bar_item_background.xml
index 088389b..425a502 100644
--- a/core/res/res/drawable/status_bar_item_background.xml
+++ b/core/res/res/drawable/status_bar_item_background.xml
@@ -16,7 +16,7 @@
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_pressed="true"
- android:drawable="@drawable/status_bar_item_background_pressed" />
+ android:drawable="@drawable/status_bar_item_background_pressed" />
<item android:state_focused="true" android:state_pressed="false"
android:drawable="@drawable/status_bar_item_background_focus" />
<item android:drawable="@drawable/status_bar_item_background_normal" />
diff --git a/core/res/res/layout/status_bar_latest_event.xml b/core/res/res/layout/status_bar_latest_event.xml
deleted file mode 100644
index 59cc90d..0000000
--- a/core/res/res/layout/status_bar_latest_event.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="65sp"
- android:orientation="vertical"
- >
-
- <com.android.server.status.LatestItemView android:id="@+id/content"
- android:layout_width="match_parent"
- android:layout_height="64sp"
- android:background="@drawable/status_bar_item_background"
- android:focusable="true"
- android:clickable="true"
- android:paddingRight="6sp"
- >
- </com.android.server.status.LatestItemView>
-
- <View
- android:layout_width="match_parent"
- android:layout_height="1sp"
- android:background="@drawable/divider_horizontal_bright"
- />
-
-</LinearLayout>
-