2017-01-08 09:24:02 +11:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2018-12-18 01:25:35 +11:00
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2018-05-27 18:22:12 +10:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2019-01-29 05:02:31 +11:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2018-05-07 06:05:54 +10:00
|
|
|
android:layout_width="match_parent"
|
2018-05-27 18:22:12 +10:00
|
|
|
android:layout_height="match_parent">
|
2017-01-08 09:24:02 +11:00
|
|
|
|
2018-12-18 01:25:35 +11:00
|
|
|
<androidx.swiperefreshlayout.widget.SwipeRefreshLayout
|
2019-02-13 05:22:37 +11:00
|
|
|
android:id="@+id/swipeRefreshLayout"
|
2018-05-07 06:05:54 +10:00
|
|
|
android:layout_width="match_parent"
|
2018-05-27 18:22:12 +10:00
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
2018-12-18 01:25:35 +11:00
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
2019-02-13 05:22:37 +11:00
|
|
|
android:id="@+id/recyclerView"
|
2018-05-27 18:22:12 +10:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent" />
|
|
|
|
|
2018-12-18 01:25:35 +11:00
|
|
|
</androidx.swiperefreshlayout.widget.SwipeRefreshLayout>
|
2018-05-27 18:22:12 +10:00
|
|
|
|
|
|
|
<ProgressBar
|
2019-02-13 05:22:37 +11:00
|
|
|
android:id="@+id/progressBar"
|
2018-05-27 18:22:12 +10:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
app:layout_constraintLeft_toLeftOf="parent"
|
|
|
|
app:layout_constraintRight_toRightOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent" />
|
|
|
|
|
2019-01-29 05:02:31 +11:00
|
|
|
<com.keylesspalace.tusky.view.BackgroundMessageView
|
|
|
|
android:id="@+id/statusView"
|
2018-05-27 18:22:12 +10:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2019-01-29 05:02:31 +11:00
|
|
|
android:src="@android:color/transparent"
|
|
|
|
android:visibility="gone"
|
2018-05-27 18:22:12 +10:00
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
app:layout_constraintLeft_toLeftOf="parent"
|
|
|
|
app:layout_constraintRight_toRightOf="parent"
|
2019-01-29 05:02:31 +11:00
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
|
|
tools:src="@drawable/elephant_error"
|
|
|
|
tools:visibility="visible"/>
|
|
|
|
|
2018-12-18 01:25:35 +11:00
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|