app/src/main/res/layout/chat_compact.xml
changeset 1044 197a85a35cba
parent 969 142f330bd3f6
equal deleted inserted replaced
1043:7d6f2526244a 1044:197a85a35cba
       
     1 <?xml version="1.0" encoding="utf-8"?>
       
     2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
       
     3 	android:layout_width="fill_parent" android:layout_height="fill_parent"
       
     4 	android:orientation="vertical">
       
     5 	<View android:layout_width="fill_parent" android:layout_height="2dp"
       
     6 		android:fadingEdge="horizontal" android:background="#222222" />
       
     7 	<ListView android:id="@+id/chat_messages"
       
     8 		android:layout_width="fill_parent" android:layout_height="0dip"
       
     9 		android:layout_weight="1" android:transcriptMode="normal"
       
    10 		android:stackFromBottom="true"
       
    11 		android:fadingEdge="none" android:padding="4px"
       
    12 		android:fastScrollEnabled="true" android:smoothScrollbar="false"
       
    13 		android:focusable="true"/>
       
    14 	<LinearLayout android:layout_width="fill_parent"
       
    15 		android:layout_height="wrap_content" android:orientation="horizontal"
       
    16 		android:background="#222222" android:padding="8px">
       
    17 		<EditText android:id="@+id/chat_input" android:layout_width="0dip"
       
    18 			android:layout_height="fill_parent" android:layout_weight="1"
       
    19 			android:maxLines="5"
       
    20 			android:inputType="textShortMessage|textAutoCorrect|textMultiLine|textCapSentences"
       
    21 			android:imeOptions="actionSend|flagNoExtractUi" android:cursorVisible="true"
       
    22 			android:hint="@string/chat_input_default_value" />
       
    23 		<Button android:id="@+id/chat_send_message"
       
    24 			android:layout_width="wrap_content" android:layout_height="fill_parent"
       
    25 			android:text="@string/chat_send_message" />
       
    26 	</LinearLayout>
       
    27 </LinearLayout>