<?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">
|
|
<com.auto.lyric.widgets.TitleBarView
|
android:id="@+id/titlebar"
|
android:layout_width="match_parent"
|
android:layout_height="50dp"
|
android:background="@color/black"
|
app:titleTextColor="@color/white"
|
app:titleText="标题"
|
app:leftDrawable="@mipmap/icon_white_back"
|
android:paddingLeft="20dp"
|
app:layout_constraintLeft_toLeftOf="parent"
|
app:layout_constraintTop_toTopOf="parent"
|
app:layout_constraintRight_toRightOf="parent" />
|
|
<include layout="@layout/refresh_recycler"
|
android:layout_width="match_parent"
|
android:layout_height="0dp"
|
app:layout_constraintTop_toBottomOf="@id/titlebar"
|
app:layout_constraintBottom_toBottomOf="parent"
|
app:layout_constraintLeft_toLeftOf="parent"
|
app:layout_constraintRight_toRightOf="parent"/>
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|