ComunicAndroid/app/src/main/res/layout/fragment_friendslist.xml
2017-11-15 18:29:58 +01:00

20 lines
762 B
XML

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent">
<!-- Progress bar - when loading the list of friends -->
<ProgressBar
android:id="@+id/fragment_friendslist_progressbar"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true" />
<ListView
android:id="@+id/fragment_friendslist_listview"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:numColumns="auto_fit" />
</RelativeLayout>