<?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="match_parent"
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
xmlns:tools="http://schemas.android.com/tools">
|
|
<android.support.v7.widget.CardView
|
android:id="@+id/cv_left_toggle"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
app:layout_constraintStart_toStartOf="parent"
|
app:layout_constraintTop_toTopOf="parent"
|
app:layout_constraintBottom_toBottomOf="parent"
|
app:layout_constraintEnd_toEndOf="parent"
|
app:cardElevation="@dimen/dimen6"
|
android:layout_margin="@dimen/dimen4"
|
android:alpha="0.7">
|
<android.support.constraint.ConstraintLayout
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:padding="@dimen/dimen2">
|
<ImageView
|
android:id="@+id/img_left_toggle"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:src="@drawable/ic_assignment_turned_in_black_36dp"
|
app:layout_constraintStart_toStartOf="parent"
|
app:layout_constraintEnd_toEndOf="parent"
|
app:layout_constraintTop_toTopOf="parent"/>
|
<TextView
|
android:id="@+id/tv_left_toggle"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
app:layout_constraintStart_toStartOf="parent"
|
app:layout_constraintEnd_toEndOf="parent"
|
app:layout_constraintTop_toBottomOf="@id/img_left_toggle"
|
tools:text="左侧开关"
|
android:textColor="@android:color/black"
|
style="@style/textSecTitle"/>
|
</android.support.constraint.ConstraintLayout>
|
</android.support.v7.widget.CardView>
|
|
</android.support.constraint.ConstraintLayout>
|