aboutsummaryrefslogtreecommitdiffstats
path: root/res/layout/message_error.xml
blob: 410e1b0506bb44b608c04f5bf350bf2178d3f584 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical"
    android:padding="8dp">

    <LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="@drawable/message_border"
        android:layout_toRightOf="@+id/message_photo"
     	android:layout_alignParentBottom="true"
     	android:minHeight="48dp"
     	>
<LinearLayout
    android:layout_width="wrap_content"
    android:layout_height="fill_parent"
    android:orientation="vertical"
    android:background="#ededed"
    android:padding="5dp">   

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Username is already in use"
        android:textSize="16sp"
        android:id="@+id/message_body"
        android:textColor="#e92727"
        android:textStyle="bold"
        android:typeface="monospace"/>
    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:paddingTop="1dp"
        android:text="@string/sending"
        android:textColor="#8e8e8e"
        android:textSize="12sp"
        android:id="@+id/message_time"/>

	</LinearLayout>
</LinearLayout>
    <ImageView
        android:id="@+id/message_photo"
        android:layout_width="48dp"
        android:layout_height="48dp"
        android:layout_alignParentTop="true"
        android:layout_alignParentLeft="true"
        android:layout_marginRight="-1.5dp"
        android:padding="0dp"
        android:src="@drawable/ic_profile"
        android:scaleType="fitXY"/>
	
</RelativeLayout>