diff options
Diffstat (limited to 'android/res/layout/statusbar.xml')
-rw-r--r-- | android/res/layout/statusbar.xml | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/android/res/layout/statusbar.xml b/android/res/layout/statusbar.xml new file mode 100644 index 0000000000..c795008225 --- /dev/null +++ b/android/res/layout/statusbar.xml | |||
@@ -0,0 +1,53 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1"?> | ||
2 | <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||
3 | android:layout_width="fill_parent" | ||
4 | android:layout_height="fill_parent" | ||
5 | android:paddingLeft="6dp" | ||
6 | android:paddingRight="6dp" | ||
7 | android:paddingTop="0dp" | ||
8 | android:paddingBottom="0dp" | ||
9 | android:orientation="horizontal"> | ||
10 | |||
11 | <LinearLayout android:layout_width="match_parent" | ||
12 | android:layout_height="wrap_content" | ||
13 | android:orientation="vertical"> | ||
14 | <LinearLayout android:layout_width="match_parent" | ||
15 | android:layout_height="wrap_content" | ||
16 | android:orientation="horizontal"> | ||
17 | |||
18 | <ImageView android:src="@drawable/notification_small" | ||
19 | android:gravity="center" | ||
20 | android:paddingTop="2dp" | ||
21 | android:layout_width="wrap_content" | ||
22 | android:layout_height="wrap_content"> | ||
23 | </ImageView> | ||
24 | |||
25 | <TextView android:id="@+id/title" | ||
26 | android:layout_width="wrap_content" | ||
27 | android:layout_height="wrap_content" | ||
28 | android:focusable="true" | ||
29 | android:ellipsize="end" | ||
30 | android:textStyle="bold" | ||
31 | android:singleLine="true" | ||
32 | android:textAppearance="?android:attr/textAppearanceMediumInverse" | ||
33 | android:gravity="center" | ||
34 | android:paddingTop="0dp" | ||
35 | android:paddingLeft="6dp" /> | ||
36 | </LinearLayout> | ||
37 | |||
38 | <LinearLayout android:layout_width="wrap_content" | ||
39 | android:layout_height="wrap_content" | ||
40 | android:paddingLeft="3dp" | ||
41 | android:orientation="vertical"> | ||
42 | <TextView android:id="@+id/content" | ||
43 | android:layout_gravity="left" | ||
44 | android:scrollHorizontally="true" | ||
45 | android:maxLines="2" | ||
46 | android:ellipsize="end" | ||
47 | android:layout_width="wrap_content" | ||
48 | android:layout_height="wrap_content" | ||
49 | android:textAppearance="?android:attr/textAppearanceSmallInverse" | ||
50 | /> | ||
51 | </LinearLayout> | ||
52 | </LinearLayout> | ||
53 | </LinearLayout> | ||