res/layout/notification.xml
author "Vincent Veronis"
Tue, 25 Oct 2011 01:12:20 +0200
changeset 909 45ba9cc90c22
child 945 89f1be755b8d
permissions -rw-r--r--
Notification now in an separate class
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
909
45ba9cc90c22 Notification now in an separate class
"Vincent Veronis"
parents:
diff changeset
     1
<RelativeLayout
45ba9cc90c22 Notification now in an separate class
"Vincent Veronis"
parents:
diff changeset
     2
	xmlns:android="http://schemas.android.com/apk/res/android"
45ba9cc90c22 Notification now in an separate class
"Vincent Veronis"
parents:
diff changeset
     3
	android:id="@+id/layout"
45ba9cc90c22 Notification now in an separate class
"Vincent Veronis"
parents:
diff changeset
     4
	android:layout_width="fill_parent"
45ba9cc90c22 Notification now in an separate class
"Vincent Veronis"
parents:
diff changeset
     5
	android:layout_height="fill_parent"
45ba9cc90c22 Notification now in an separate class
"Vincent Veronis"
parents:
diff changeset
     6
	android:padding="10dp">
45ba9cc90c22 Notification now in an separate class
"Vincent Veronis"
parents:
diff changeset
     7
	<ImageButton
45ba9cc90c22 Notification now in an separate class
"Vincent Veronis"
parents:
diff changeset
     8
		android:id="@+id/status"
45ba9cc90c22 Notification now in an separate class
"Vincent Veronis"
parents:
diff changeset
     9
		android:background="@drawable/beem_launcher_icon_silver"
45ba9cc90c22 Notification now in an separate class
"Vincent Veronis"
parents:
diff changeset
    10
		android:layout_width="wrap_content"
45ba9cc90c22 Notification now in an separate class
"Vincent Veronis"
parents:
diff changeset
    11
		android:layout_height="wrap_content"
45ba9cc90c22 Notification now in an separate class
"Vincent Veronis"
parents:
diff changeset
    12
		android:layout_centerVertical="true"
45ba9cc90c22 Notification now in an separate class
"Vincent Veronis"
parents:
diff changeset
    13
		android:layout_alignParentLeft="true"
45ba9cc90c22 Notification now in an separate class
"Vincent Veronis"
parents:
diff changeset
    14
		android:layout_marginRight="10dp" />
45ba9cc90c22 Notification now in an separate class
"Vincent Veronis"
parents:
diff changeset
    15
	<TextView
45ba9cc90c22 Notification now in an separate class
"Vincent Veronis"
parents:
diff changeset
    16
		android:id="@+id/pseudo"
45ba9cc90c22 Notification now in an separate class
"Vincent Veronis"
parents:
diff changeset
    17
		android:layout_width="wrap_content"
45ba9cc90c22 Notification now in an separate class
"Vincent Veronis"
parents:
diff changeset
    18
		android:layout_height="wrap_content"
45ba9cc90c22 Notification now in an separate class
"Vincent Veronis"
parents:
diff changeset
    19
		android:layout_toRightOf="@id/status"
45ba9cc90c22 Notification now in an separate class
"Vincent Veronis"
parents:
diff changeset
    20
		style="@style/NotificationTitle" />
45ba9cc90c22 Notification now in an separate class
"Vincent Veronis"
parents:
diff changeset
    21
	<TextView
45ba9cc90c22 Notification now in an separate class
"Vincent Veronis"
parents:
diff changeset
    22
		android:id="@+id/msgstatus"
45ba9cc90c22 Notification now in an separate class
"Vincent Veronis"
parents:
diff changeset
    23
		android:layout_width="wrap_content"
45ba9cc90c22 Notification now in an separate class
"Vincent Veronis"
parents:
diff changeset
    24
		android:layout_height="wrap_content"
45ba9cc90c22 Notification now in an separate class
"Vincent Veronis"
parents:
diff changeset
    25
		android:layout_toRightOf="@id/status"
45ba9cc90c22 Notification now in an separate class
"Vincent Veronis"
parents:
diff changeset
    26
		android:layout_below="@id/pseudo"
45ba9cc90c22 Notification now in an separate class
"Vincent Veronis"
parents:
diff changeset
    27
		style="@style/NotificationText" />
45ba9cc90c22 Notification now in an separate class
"Vincent Veronis"
parents:
diff changeset
    28
</RelativeLayout>