mirror of https://github.com/tuskyapp/Tusky.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
2.3 KiB
52 lines
2.3 KiB
<?xml version="1.0" encoding="utf-8"?> |
|
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android" |
|
xmlns:app="http://schemas.android.com/apk/res-auto" |
|
xmlns:tools="http://schemas.android.com/tools" |
|
android:layout_width="match_parent" |
|
android:layout_height="match_parent" |
|
tools:context=".components.scheduled.ScheduledStatusActivity"> |
|
|
|
<include |
|
android:id="@+id/includedToolbar" |
|
layout="@layout/toolbar_basic" /> |
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout |
|
android:layout_width="match_parent" |
|
android:layout_height="match_parent" |
|
app:layout_behavior="@string/appbar_scrolling_view_behavior"> |
|
|
|
<ProgressBar |
|
android:id="@+id/progressBar" |
|
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" /> |
|
|
|
<androidx.swiperefreshlayout.widget.SwipeRefreshLayout |
|
android:id="@+id/swipeRefreshLayout" |
|
android:layout_width="match_parent" |
|
android:layout_height="match_parent"> |
|
|
|
<FrameLayout |
|
android:layout_width="match_parent" |
|
android:layout_height="match_parent"> |
|
|
|
<androidx.recyclerview.widget.RecyclerView |
|
android:id="@+id/scheduledTootList" |
|
android:layout_width="match_parent" |
|
android:layout_height="match_parent" /> |
|
|
|
<com.keylesspalace.tusky.view.BackgroundMessageView |
|
android:id="@+id/errorMessageView" |
|
android:layout_width="match_parent" |
|
android:layout_height="match_parent" |
|
android:layout_gravity="center" |
|
android:visibility="gone" |
|
tools:src="@drawable/errorphant_error" |
|
tools:visibility="visible" /> |
|
</FrameLayout> |
|
</androidx.swiperefreshlayout.widget.SwipeRefreshLayout> |
|
</androidx.constraintlayout.widget.ConstraintLayout> |
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|
|
|