76 lines
3.2 KiB
XML
76 lines
3.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.constraintlayout.widget.ConstraintLayout 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"
|
|
android:background="@drawable/shape_left_fragment_bg"
|
|
tools:context=".ui.fragment.tasklist.TaskManagerFragment">
|
|
|
|
<androidx.appcompat.widget.AppCompatImageView
|
|
android:id="@+id/task_back"
|
|
style="@style/btn_round"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="5dp"
|
|
android:background="@drawable/selector_bg_round_button"
|
|
android:foreground="@drawable/ripple_btn_press"
|
|
android:src="@drawable/ic_baseline_keyboard_arrow_left_24"
|
|
app:layout_constraintLeft_toLeftOf="parent"
|
|
app:layout_constraintTop_toTopOf="parent" />
|
|
|
|
<TextView
|
|
android:id="@+id/task_fragment_title"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="15dp"
|
|
android:text="评测任务"
|
|
android:textColor="@color/default_blue_text_color"
|
|
android:textSize="16sp"
|
|
app:layout_constraintLeft_toLeftOf="parent"
|
|
app:layout_constraintRight_toRightOf="parent"
|
|
app:layout_constraintTop_toTopOf="parent" />
|
|
|
|
<com.google.android.material.tabs.TabLayout
|
|
android:id="@+id/task_manager_tab_layout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="@dimen/fragment_tabLayout_height"
|
|
android:layout_marginLeft="8dp"
|
|
android:layout_marginTop="11dp"
|
|
android:layout_marginRight="8dp"
|
|
android:background="@color/transparent"
|
|
app:layout_constraintLeft_toLeftOf="parent"
|
|
app:layout_constraintTop_toBottomOf="@id/task_fragment_title"
|
|
app:tabBackground="@drawable/selector_bg_gradient_checkbox"
|
|
app:tabGravity="center"
|
|
app:tabIndicator="@null"
|
|
app:tabIndicatorHeight="0dp"
|
|
app:tabMaxWidth="150dp"
|
|
app:tabMinWidth="150dp"
|
|
app:tabMode="scrollable"
|
|
app:tabPaddingEnd="6dp"
|
|
app:tabPaddingStart="6dp"
|
|
app:tabSelectedTextColor="@color/white"
|
|
app:tabTextAppearance="@style/TabLayoutTextStyle"
|
|
app:tabTextColor="@color/black">
|
|
|
|
<com.google.android.material.tabs.TabItem
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="当前任务" />
|
|
|
|
<com.google.android.material.tabs.TabItem
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="任务列表" />
|
|
</com.google.android.material.tabs.TabLayout>
|
|
|
|
<androidx.viewpager2.widget.ViewPager2
|
|
android:id="@+id/task_manager_viewpager"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_marginTop="10dp"
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
app:layout_constraintTop_toBottomOf="@id/task_manager_tab_layout" />
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout> |