2017-06-29 17:55:39 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2018-12-17 15:25:35 +01:00
|
|
|
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2017-06-29 17:55:39 +02:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2017-07-15 09:10:55 +02:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2017-06-29 17:55:39 +02:00
|
|
|
android:id="@+id/activity_view_thread"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
tools:context="com.keylesspalace.tusky.AccountListActivity">
|
|
|
|
|
2017-07-15 09:10:55 +02:00
|
|
|
<include layout="@layout/toolbar_basic" />
|
|
|
|
|
2017-07-05 16:35:33 +02:00
|
|
|
<RelativeLayout
|
2017-06-29 17:55:39 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2017-07-15 09:10:55 +02:00
|
|
|
app:layout_behavior="@string/appbar_scrolling_view_behavior">
|
2017-06-29 17:55:39 +02:00
|
|
|
|
2018-12-17 15:25:35 +01:00
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
2019-02-12 19:22:37 +01:00
|
|
|
android:id="@+id/recyclerView"
|
2017-06-29 17:55:39 +02:00
|
|
|
android:layout_width="match_parent"
|
2017-07-15 09:10:55 +02:00
|
|
|
android:layout_height="match_parent" />
|
2017-06-29 17:55:39 +02:00
|
|
|
|
2020-01-06 18:24:54 +01:00
|
|
|
<com.keylesspalace.tusky.view.BackgroundMessageView
|
|
|
|
android:id="@+id/errorMessageView"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_centerInParent="true"
|
|
|
|
android:src="@android:color/transparent"
|
|
|
|
android:visibility="gone"
|
|
|
|
tools:src="@drawable/elephant_error"
|
|
|
|
tools:visibility="visible" />
|
|
|
|
|
2017-07-05 16:35:33 +02:00
|
|
|
</RelativeLayout>
|
2017-06-29 17:55:39 +02:00
|
|
|
|
2020-01-06 18:24:54 +01:00
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|