<?xml version="1.0" encoding="utf-8"?>
|
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:paddingStart="@dimen/dimen8"
|
android:paddingEnd="@dimen/dimen8"
|
android:paddingTop="@dimen/dimen4"
|
android:paddingBottom="@dimen/dimen4"
|
android:background="@color/white"
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
|
<TextView
|
android:id="@+id/text_scene"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:text="选择场景:"
|
android:textColor="@color/black"
|
app:layout_constraintLeft_toLeftOf="parent"
|
app:layout_constraintTop_toTopOf="parent"
|
app:layout_constraintBottom_toBottomOf="parent"/>
|
<ImageView
|
android:id="@+id/image_scene_type"
|
android:layout_width="40dp"
|
android:layout_height="40dp"
|
android:src="@drawable/icon_construction"
|
app:layout_constraintLeft_toRightOf="@id/text_scene"
|
app:layout_constraintTop_toTopOf="parent"
|
app:layout_constraintBottom_toBottomOf="parent"/>
|
<Spinner
|
android:id="@+id/sp_scene_type"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_marginEnd="@dimen/dimen4"
|
android:gravity="center_horizontal"
|
app:layout_constraintRight_toLeftOf="@id/btn_search"
|
app:layout_constraintTop_toTopOf="parent"
|
app:layout_constraintBottom_toBottomOf="parent">
|
</Spinner>
|
<Button
|
android:id="@+id/btn_search"
|
android:layout_width="40dp"
|
android:layout_height="40dp"
|
app:layout_constraintRight_toRightOf="parent"
|
app:layout_constraintTop_toTopOf="parent"
|
app:layout_constraintBottom_toBottomOf="parent"
|
android:background="@drawable/icon_runing_task"/>
|
|
</android.support.constraint.ConstraintLayout>
|