1
0
mirror of https://github.com/pierre42100/ComunicAndroid synced 2025-06-26 20:03:31 +00:00
Files
ComunicAndroid/app/src/main/res/layout/fragment_conversationslist.xml
2017-12-09 14:02:29 +01:00

22 lines
826 B
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">
<!-- 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:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/fragment_conversationslist_create_button"
android:enabled="false" /><!-- Not available yet -->
</LinearLayout>