2019-02-12 19:22:37 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2019-03-24 08:59:55 +01:00
|
|
|
<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="wrap_content"
|
|
|
|
android:background="?android:colorBackground"
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:paddingStart="16dp"
|
|
|
|
android:paddingTop="16dp"
|
|
|
|
android:paddingEnd="16dp">
|
|
|
|
|
2019-02-12 19:22:37 +01:00
|
|
|
<ImageView
|
|
|
|
android:id="@+id/imageView"
|
2019-03-24 08:59:55 +01:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2019-02-12 19:22:37 +01:00
|
|
|
android:layout_gravity="end"
|
|
|
|
android:src="@drawable/ic_drag_indicator_24dp"
|
2019-03-24 08:59:55 +01:00
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/textView"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginStart="8dp"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:drawablePadding="12dp"
|
|
|
|
android:textColor="?android:attr/textColorSecondary"
|
|
|
|
android:textSize="?attr/status_text_large"
|
|
|
|
app:layout_constraintBottom_toTopOf="@id/chipGroup"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toEndOf="@id/imageView"
|
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
|
|
app:layout_goneMarginBottom="16dp"
|
|
|
|
tools:drawableStart="@drawable/ic_home_24dp"
|
|
|
|
tools:text="Home" />
|
|
|
|
|
|
|
|
<com.google.android.material.chip.ChipGroup
|
|
|
|
android:id="@+id/chipGroup"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginStart="32dp"
|
|
|
|
android:layout_marginBottom="8dp"
|
|
|
|
android:paddingTop="8dp"
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent">
|
2019-02-12 19:22:37 +01:00
|
|
|
|
2019-03-24 08:59:55 +01:00
|
|
|
<com.google.android.material.chip.Chip
|
|
|
|
android:id="@+id/actionChip"
|
|
|
|
style="@style/Widget.MaterialComponents.Chip.Action"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:checkable="false"
|
|
|
|
tools:text="add hashtag" />
|
2019-02-12 19:22:37 +01:00
|
|
|
|
2019-03-24 08:59:55 +01:00
|
|
|
</com.google.android.material.chip.ChipGroup>
|
2019-02-12 19:22:37 +01:00
|
|
|
|
2019-03-24 08:59:55 +01:00
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
2019-02-12 19:22:37 +01:00
|
|
|
|