909
|
1 |
<RelativeLayout
|
|
2 |
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
3 |
android:id="@+id/layout"
|
|
4 |
android:layout_width="fill_parent"
|
|
5 |
android:layout_height="fill_parent"
|
|
6 |
android:padding="10dp">
|
|
7 |
<ImageButton
|
|
8 |
android:id="@+id/status"
|
|
9 |
android:background="@drawable/beem_launcher_icon_silver"
|
|
10 |
android:layout_width="wrap_content"
|
|
11 |
android:layout_height="wrap_content"
|
|
12 |
android:layout_centerVertical="true"
|
|
13 |
android:layout_alignParentLeft="true"
|
|
14 |
android:layout_marginRight="10dp" />
|
|
15 |
<TextView
|
|
16 |
android:id="@+id/pseudo"
|
|
17 |
android:layout_width="wrap_content"
|
|
18 |
android:layout_height="wrap_content"
|
|
19 |
android:layout_toRightOf="@id/status"
|
|
20 |
style="@style/NotificationTitle" />
|
|
21 |
<TextView
|
|
22 |
android:id="@+id/msgstatus"
|
|
23 |
android:layout_width="wrap_content"
|
|
24 |
android:layout_height="wrap_content"
|
|
25 |
android:layout_toRightOf="@id/status"
|
|
26 |
android:layout_below="@id/pseudo"
|
|
27 |
style="@style/NotificationText" />
|
|
28 |
</RelativeLayout> |