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

29 lines
1.0 KiB
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" />
<!-- No friend notice -->
<TextView
android:id="@+id/no_friend_notice"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/notice_no_friend"
android:textAlignment="center"
android:layout_marginTop="50dp"/>
<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>