76 lines
No EOL
2.9 KiB
XML
76 lines
No EOL
2.9 KiB
XML
<?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="com.deniscerri.ytdlnis.ui.more.TerminalActivity">
|
|
|
|
<com.google.android.material.appbar.AppBarLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
app:liftOnScroll="true"
|
|
android:background="@android:color/transparent"
|
|
android:fitsSystemWindows="true">
|
|
|
|
<com.google.android.material.appbar.MaterialToolbar
|
|
android:id="@+id/logs_toolbar"
|
|
android:elevation="0dp"
|
|
app:title="@string/download_queue"
|
|
app:menu="@menu/download_queue_menu"
|
|
android:layout_width="match_parent"
|
|
app:navigationIcon="@drawable/ic_back"
|
|
android:layout_height="match_parent"/>
|
|
|
|
|
|
</com.google.android.material.appbar.AppBarLayout>
|
|
|
|
<LinearLayout
|
|
app:layout_behavior="@string/appbar_scrolling_view_behavior"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical">
|
|
|
|
<com.google.android.material.tabs.TabLayout
|
|
android:id="@+id/download_tablayout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_margin="10dp"
|
|
android:backgroundTint="@android:color/transparent"
|
|
app:tabGravity="fill"
|
|
app:tabMode="scrollable">
|
|
|
|
<com.google.android.material.tabs.TabItem
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"
|
|
android:text="@string/running" />
|
|
|
|
<com.google.android.material.tabs.TabItem
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"
|
|
android:text="@string/in_queue" />
|
|
|
|
<com.google.android.material.tabs.TabItem
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"
|
|
android:text="@string/cancelled" />
|
|
|
|
<com.google.android.material.tabs.TabItem
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"
|
|
android:text="@string/errored" />
|
|
|
|
|
|
</com.google.android.material.tabs.TabLayout>
|
|
|
|
<androidx.viewpager2.widget.ViewPager2
|
|
android:id="@+id/download_viewpager"
|
|
android:layout_width="match_parent"
|
|
android:paddingHorizontal="10dp"
|
|
android:layout_height="match_parent" />
|
|
</LinearLayout>
|
|
<include layout="@layout/history_no_results"
|
|
android:visibility="gone" />
|
|
|
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout> |