2017-06-30 01:55:39 +10:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:id="@+id/activity_view_thread"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
tools:context="com.keylesspalace.tusky.AccountListActivity">
|
|
|
|
|
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"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<android.support.v7.widget.Toolbar
|
|
|
|
android:id="@+id/toolbar"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="?attr/actionBarSize"
|
|
|
|
android:background="?attr/toolbar_background_color"
|
|
|
|
android:elevation="4dp" />
|
|
|
|
|
2017-07-06 00:35:33 +10:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/no_content"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_centerInParent="true"
|
|
|
|
android:text="@string/no_content"
|
|
|
|
android:visibility="invisible" />
|
|
|
|
|
2017-06-30 01:55:39 +10:00
|
|
|
<android.support.v7.widget.RecyclerView
|
|
|
|
android:id="@+id/recycler_view"
|
|
|
|
android:layout_width="match_parent"
|
2017-07-06 00:35:33 +10:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_below="@+id/toolbar" />
|
|
|
|
|
2017-06-30 01:55:39 +10:00
|
|
|
|
2017-07-06 00:35:33 +10:00
|
|
|
</RelativeLayout>
|
2017-06-30 01:55:39 +10:00
|
|
|
|
|
|
|
</android.support.design.widget.CoordinatorLayout>
|