author | Da Risk <darisk972@gmail.com> |
Mon, 14 Jun 2010 22:47:22 +0200 | |
changeset 774 | 1b88edb34d96 |
parent 772 | d1db49d18275 |
child 798 | 6c924ac95f1c |
permissions | -rw-r--r-- |
653
e94abef6120c
Add some displaying of error in chat activity
Da Risk <darisk972@gmail.com>
parents:
diff
changeset
|
1 |
<?xml version="1.0" encoding="utf-8"?> |
772 | 2 |
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" |
653
e94abef6120c
Add some displaying of error in chat activity
Da Risk <darisk972@gmail.com>
parents:
diff
changeset
|
3 |
android:orientation="vertical" |
e94abef6120c
Add some displaying of error in chat activity
Da Risk <darisk972@gmail.com>
parents:
diff
changeset
|
4 |
android:layout_width="fill_parent" |
e94abef6120c
Add some displaying of error in chat activity
Da Risk <darisk972@gmail.com>
parents:
diff
changeset
|
5 |
android:layout_height="wrap_content" |
e94abef6120c
Add some displaying of error in chat activity
Da Risk <darisk972@gmail.com>
parents:
diff
changeset
|
6 |
> |
e94abef6120c
Add some displaying of error in chat activity
Da Risk <darisk972@gmail.com>
parents:
diff
changeset
|
7 |
|
e94abef6120c
Add some displaying of error in chat activity
Da Risk <darisk972@gmail.com>
parents:
diff
changeset
|
8 |
<TextView android:id="@+id/chatmessagename" |
e94abef6120c
Add some displaying of error in chat activity
Da Risk <darisk972@gmail.com>
parents:
diff
changeset
|
9 |
android:layout_width="fill_parent" |
e94abef6120c
Add some displaying of error in chat activity
Da Risk <darisk972@gmail.com>
parents:
diff
changeset
|
10 |
android:layout_height="wrap_content" |
772 | 11 |
android:layout_alignParentLeft="true" |
12 |
android:layout_alignParentTop="true" |
|
653
e94abef6120c
Add some displaying of error in chat activity
Da Risk <darisk972@gmail.com>
parents:
diff
changeset
|
13 |
android:textSize="16sp" |
e94abef6120c
Add some displaying of error in chat activity
Da Risk <darisk972@gmail.com>
parents:
diff
changeset
|
14 |
android:textColor="#FFFFFF" |
e94abef6120c
Add some displaying of error in chat activity
Da Risk <darisk972@gmail.com>
parents:
diff
changeset
|
15 |
android:textStyle="bold" |
e94abef6120c
Add some displaying of error in chat activity
Da Risk <darisk972@gmail.com>
parents:
diff
changeset
|
16 |
android:paddingBottom="1dp" |
e94abef6120c
Add some displaying of error in chat activity
Da Risk <darisk972@gmail.com>
parents:
diff
changeset
|
17 |
/> |
772 | 18 |
<TextView android:id="@+id/chatmessagedate" |
19 |
android:layout_width="wrap_content" |
|
653
e94abef6120c
Add some displaying of error in chat activity
Da Risk <darisk972@gmail.com>
parents:
diff
changeset
|
20 |
android:layout_height="wrap_content" |
772 | 21 |
android:layout_alignParentTop="true" |
22 |
android:layout_alignParentRight="true" |
|
653
e94abef6120c
Add some displaying of error in chat activity
Da Risk <darisk972@gmail.com>
parents:
diff
changeset
|
23 |
android:autoLink="all" |
e94abef6120c
Add some displaying of error in chat activity
Da Risk <darisk972@gmail.com>
parents:
diff
changeset
|
24 |
/> |
772 | 25 |
<TextView android:id="@+id/chatmessagetext" |
26 |
android:layout_width="wrap_content" |
|
27 |
android:layout_height="wrap_content" |
|
28 |
android:layout_alignParentLeft="true" |
|
29 |
android:layout_below="@id/chatmessagename" |
|
30 |
android:autoLink="all" |
|
31 |
/> |
|
653
e94abef6120c
Add some displaying of error in chat activity
Da Risk <darisk972@gmail.com>
parents:
diff
changeset
|
32 |
|
772 | 33 |
|
34 |
</RelativeLayout> |
|
35 |