mirror of
https://github.com/oxen-io/session-android.git
synced 2024-11-24 10:35:19 +00:00
278214ef86
Fixes #3830 Closes #3840 // FREEBIE
39 lines
1.5 KiB
XML
39 lines
1.5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical"
|
|
android:paddingLeft="16dip"
|
|
android:paddingRight="16dip">
|
|
|
|
<LinearLayout android:id="@+id/progress_container"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent"
|
|
android:gravity="center"
|
|
android:orientation="vertical"
|
|
android:visibility="gone" >
|
|
|
|
<ProgressBar android:id="@+id/progress"
|
|
android:indeterminate="true"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content" >
|
|
</ProgressBar>
|
|
</LinearLayout>
|
|
|
|
<TextView android:id="@+id/empty"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_gravity="center|center_vertical"
|
|
android:gravity="center|center_vertical"
|
|
android:textSize="20sp"
|
|
android:visibility="gone"
|
|
android:text="@string/device_list_fragment__no_devices_linked"/>
|
|
|
|
<ListView android:id="@id/android:list"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_weight="1"
|
|
android:drawSelectorOnTop="false"/>
|
|
|
|
|
|
</LinearLayout> |