<?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"
|
xmlns:tools="http://schemas.android.com/tools"
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
android:background="@color/colorPrimary"
|
android:padding="@dimen/dimen8"
|
android:elevation="@dimen/dimen6"
|
tools:ignore="UnusedAttribute">
|
|
<TextView
|
android:id="@+id/tv_header"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
tools:text="@string/app_name"
|
style="@style/TextStyle.Title"
|
android:textStyle="bold"
|
android:textSize="16sp"
|
app:layout_constraintStart_toStartOf="parent"
|
app:layout_constraintTop_toTopOf="parent"
|
app:layout_constraintBottom_toBottomOf="parent"/>
|
|
<ImageView
|
android:id="@+id/img_arrow"
|
android:layout_width="@dimen/dimen16"
|
android:layout_height="@dimen/dimen16"
|
android:src="@drawable/selector_show_hide_white"
|
app:layout_constraintTop_toTopOf="parent"
|
app:layout_constraintBottom_toBottomOf="parent"
|
app:layout_constraintEnd_toEndOf="parent"/>
|
|
</android.support.constraint.ConstraintLayout>
|