|
@@ -1,18 +1,24 @@
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
-<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
|
|
+<android.support.constraint.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:id="@+id/constraintLayout"
|
|
|
android:layout_width="match_parent"
|
|
android:layout_width="match_parent"
|
|
|
- android:layout_height="match_parent"
|
|
|
|
|
- android:background="@drawable/detail_tag">
|
|
|
|
|
-
|
|
|
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
|
+ android:background="@android:color/darker_gray">
|
|
|
|
|
+
|
|
|
|
|
|
|
|
<TextView
|
|
<TextView
|
|
|
android:id="@+id/tv_group"
|
|
android:id="@+id/tv_group"
|
|
|
android:layout_width="wrap_content"
|
|
android:layout_width="wrap_content"
|
|
|
android:layout_height="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
|
- android:layout_alignParentLeft="true"
|
|
|
|
|
- android:layout_alignParentTop="true"
|
|
|
|
|
- android:drawableLeft="@android:drawable/arrow_down_float"
|
|
|
|
|
|
|
+ android:layout_marginBottom="4dp"
|
|
|
|
|
+ android:layout_marginStart="8dp"
|
|
|
|
|
+ android:layout_marginTop="4dp"
|
|
|
android:text="TextView"
|
|
android:text="TextView"
|
|
|
- android:textAppearance="?android:attr/textAppearanceMedium" />
|
|
|
|
|
|
|
+ app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
|
|
|
+ app:layout_constraintTop_toTopOf="parent"
|
|
|
|
|
+ />
|
|
|
|
|
|
|
|
-</RelativeLayout>
|
|
|
|
|
|
|
+</android.support.constraint.ConstraintLayout>
|