mirror of
https://github.com/pierre42100/ComunicAndroid
synced 2025-06-21 01:25:19 +00:00
First message sent from the Android application
This commit is contained in:
@ -3,6 +3,7 @@
|
||||
android:orientation="vertical" android:layout_width="match_parent"
|
||||
android:layout_height="match_parent">
|
||||
|
||||
<!-- Messages -->
|
||||
<ListView
|
||||
android:id="@+id/fragment_conversation_messageslist"
|
||||
android:layout_width="match_parent"
|
||||
@ -13,4 +14,26 @@
|
||||
android:transcriptMode="alwaysScroll"
|
||||
/>
|
||||
|
||||
<!-- Send messages form -->
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:background="@color/conversation_footer_bg">
|
||||
|
||||
<EditText
|
||||
android:id="@+id/fragment_conversation_newmessage_content"
|
||||
android:layout_width="0dp"
|
||||
android:layout_weight="1"
|
||||
android:layout_height="wrap_content"
|
||||
android:hint="@string/fragment_conversation_new_message_placeholder"/>
|
||||
|
||||
<ImageButton
|
||||
android:id="@+id/fragment_conversation_newmessage_send"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:src="@android:drawable/ic_menu_send"
|
||||
android:contentDescription="@string/conversation_message_send"/>
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
</LinearLayout>
|
Reference in New Issue
Block a user