2017-06-30 01:55:39 +10:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2018-12-18 01:25:35 +11:00
|
|
|
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2017-06-30 01:55:39 +10:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2017-07-15 17:10:55 +10:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2017-06-30 01:55:39 +10: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 17:10:55 +10:00
|
|
|
<include layout="@layout/toolbar_basic" />
|
|
|
|
|
2017-07-06 00:35:33 +10:00
|
|
|
<RelativeLayout
|
2017-06-30 01:55:39 +10:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2017-07-15 17:10:55 +10:00
|
|
|
app:layout_behavior="@string/appbar_scrolling_view_behavior">
|
2017-06-30 01:55:39 +10:00
|
|
|
|
2018-12-18 01:25:35 +11:00
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
2019-02-13 05:22:37 +11:00
|
|
|
android:id="@+id/recyclerView"
|
2017-06-30 01:55:39 +10:00
|
|
|
android:layout_width="match_parent"
|
2017-07-15 17:10:55 +10:00
|
|
|
android:layout_height="match_parent" />
|
2017-06-30 01:55:39 +10:00
|
|
|
|
2020-01-07 04:24:54 +11: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-06 00:35:33 +10:00
|
|
|
</RelativeLayout>
|
2017-06-30 01:55:39 +10:00
|
|
|
|
2020-01-07 04:24:54 +11:00
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|