62 lines
2.6 KiB
XML
62 lines
2.6 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:id="@+id/activity_driver_circle">
|
|
|
|
<com.arpa.hndahesudintocctmsdriver.util.view.BaseRecyclerView
|
|
android:id="@+id/brv_douyin"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent" />
|
|
<RelativeLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="@dimen/dp_180"
|
|
app:layout_constraintBottom_toBottomOf="@+id/brv_douyin"
|
|
tools:ignore="MissingConstraints">
|
|
<ImageView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="@dimen/dp_180"
|
|
android:src="@mipmap/bg_video"
|
|
android:scaleType="fitXY" />
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="@dimen/dp_60"
|
|
android:orientation="horizontal"
|
|
android:layout_alignParentBottom="true"
|
|
android:background="#363737">
|
|
<TextView
|
|
android:layout_marginRight="@dimen/dp_50"
|
|
android:layout_width="@dimen/dp_0"
|
|
android:layout_height="match_parent"
|
|
android:layout_weight="1"
|
|
android:text="首页"
|
|
android:gravity="center"
|
|
android:textSize="@dimen/sp_18"
|
|
android:textStyle="bold"
|
|
android:textColor="#fff"/>
|
|
<TextView
|
|
android:layout_marginLeft="@dimen/dp_50"
|
|
android:layout_width="@dimen/dp_0"
|
|
android:layout_height="match_parent"
|
|
android:layout_weight="1"
|
|
android:text="我的"
|
|
android:gravity="center"
|
|
android:textSize="@dimen/sp_18"
|
|
android:textStyle="bold"
|
|
android:textColor="#fff"/>
|
|
</LinearLayout>
|
|
<ImageButton
|
|
android:layout_width="@dimen/dp_100"
|
|
android:layout_height="@dimen/dp_100"
|
|
android:src="@mipmap/icon_video_add"
|
|
android:scaleType="fitXY"
|
|
android:background="@null"
|
|
android:onClick="videoRecording"
|
|
android:layout_centerHorizontal="true"
|
|
android:layout_alignParentBottom="true"/>
|
|
</RelativeLayout>
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout> |