47 lines
1.9 KiB
XML
47 lines
1.9 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
tools:context=".fragment.PoiTaskFragment">
|
|
|
|
<LinearLayout
|
|
android:id="@+id/rl_poiTask"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="@color/colorPrimaryBlue"
|
|
android:orientation="horizontal"
|
|
android:paddingTop="@dimen/top_pind_sp"
|
|
app:layout_constraintBottom_toTopOf="@+id/poiTask_xrv"
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintTop_toTopOf="parent">
|
|
|
|
<ImageView
|
|
android:id="@+id/iv_poiTask_finish"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="45dp"
|
|
android:layout_marginStart="15dp"
|
|
android:src="@drawable/ic_baseline_arrow" />
|
|
|
|
<TextView
|
|
android:id="@+id/tv_poiTask_title"
|
|
style="@style/toolbar_style"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="45dp"
|
|
android:layout_marginStart="15dp"
|
|
android:gravity="center"
|
|
android:text="POI任务列表" />
|
|
</LinearLayout>
|
|
|
|
<com.jcodecraeer.xrecyclerview.XRecyclerView
|
|
android:id="@+id/poiTask_xrv"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintTop_toBottomOf="@+id/rl_poiTask" />
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout> |