res/layout/notification.xml
changeset 945 89f1be755b8d
parent 909 45ba9cc90c22
equal deleted inserted replaced
944:31af5f8f9015 945:89f1be755b8d
     1 <RelativeLayout
     1 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
     2 	xmlns:android="http://schemas.android.com/apk/res/android"
     2     android:id="@+id/layout"
     3 	android:id="@+id/layout"
     3     android:layout_width="fill_parent"
     4 	android:layout_width="fill_parent"
     4     android:layout_height="fill_parent"
     5 	android:layout_height="fill_parent"
     5     android:padding="10dp" >
     6 	android:padding="10dp">
     6 
     7 	<ImageButton
     7     <ImageButton
     8 		android:id="@+id/status"
     8         android:id="@+id/status"
     9 		android:background="@drawable/beem_launcher_icon_silver"
     9         android:layout_width="wrap_content"
    10 		android:layout_width="wrap_content"
    10         android:layout_height="wrap_content"
    11 		android:layout_height="wrap_content"
    11         android:layout_alignParentLeft="true"
    12 		android:layout_centerVertical="true"
    12         android:layout_centerVertical="true"
    13 		android:layout_alignParentLeft="true"
    13         android:layout_marginRight="10dp"
    14 		android:layout_marginRight="10dp" />
    14         android:background="@drawable/beem_launcher_icon_silver" />
    15 	<TextView
    15 
    16 		android:id="@+id/pseudo"
    16     <TextView
    17 		android:layout_width="wrap_content"
    17         android:id="@+id/pseudo"
    18 		android:layout_height="wrap_content"
    18         style="@style/NotificationTitle"
    19 		android:layout_toRightOf="@id/status"
    19         android:layout_width="wrap_content"
    20 		style="@style/NotificationTitle" />
    20         android:layout_height="wrap_content"
    21 	<TextView
    21         android:layout_toRightOf="@id/status" />
    22 		android:id="@+id/msgstatus"
    22 
    23 		android:layout_width="wrap_content"
    23     <TextView
    24 		android:layout_height="wrap_content"
    24         android:id="@+id/msgstatus"
    25 		android:layout_toRightOf="@id/status"
    25         style="@style/NotificationText"
    26 		android:layout_below="@id/pseudo"
    26         android:layout_width="wrap_content"
    27 		style="@style/NotificationText" />
    27         android:layout_height="wrap_content"
       
    28         android:layout_below="@id/pseudo"
       
    29         android:layout_toRightOf="@id/status" />
       
    30 
    28 </RelativeLayout>
    31 </RelativeLayout>