ComunicAndroid/app/src/main/res/layout/fragment_conversationslist.xml

41 lines
1.4 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent">
<!-- Loading progress bar -->
<ProgressBar
android:id="@+id/fragment_conversationslist_progressbar"
android:layout_marginTop="25dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"/>
<!-- No conversation notice -->
<TextView
android:id="@+id/no_conversation_notice"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/notice_no_conversation"
android:layout_gravity="center"
android:layout_marginTop="10dp"/>
<!-- List of the conversations -->
<ListView
android:id="@+id/fragment_conversationslist_list"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:orientation="vertical"
android:numColumns="auto_fit"/>
<!-- Create new conversations button -->
<Button
android:id="@+id/fragment_conversationslist_create"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/fragment_conversationslist_create_button"
android:enabled="true" />
</LinearLayout>