project_files/Android-build/SDL-android-project/res/layout/lobby_chat_fragment.xml
changeset 7330 867e4fda496e
child 7342 0e29eec2df5c
equal deleted inserted replaced
7328:cd919a2ead4e 7330:867e4fda496e
       
     1 <?xml version="1.0" encoding="utf-8"?>
       
     2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
       
     3     xmlns:tools="http://schemas.android.com/tools"
       
     4     android:layout_width="match_parent"
       
     5     android:layout_height="match_parent"
       
     6     android:orientation="vertical" >
       
     7 
       
     8     <ScrollView
       
     9         android:id="@+id/lobbyConsoleScroll"
       
    10         android:layout_width="match_parent"
       
    11         android:layout_height="0dp"
       
    12         android:layout_weight="1"
       
    13         android:requiresFadingEdge="vertical"
       
    14         android:scrollbars="vertical" >
       
    15 
       
    16         <TextView
       
    17             android:id="@+id/lobbyConsole"
       
    18             android:layout_width="match_parent"
       
    19             android:layout_height="wrap_content"
       
    20             android:autoLink="none"
       
    21             android:freezesText="true"
       
    22             android:text=""
       
    23             tools:context=".LobbyActivity" />
       
    24     </ScrollView>
       
    25 
       
    26     <EditText
       
    27         android:id="@+id/lobbyChatInput"
       
    28         android:layout_width="match_parent"
       
    29         android:layout_height="wrap_content"
       
    30         android:hint="@string/chat_hint"
       
    31         android:imeOptions="actionSend"
       
    32         android:inputType="text" />
       
    33 
       
    34 </LinearLayout>