2020-03-19 13:26:33 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<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"
|
|
|
|
tools:context="eu.faircode.email.ActivityView">
|
|
|
|
|
|
|
|
<View
|
|
|
|
android:id="@+id/vSeparatorAction"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="1dp"
|
|
|
|
android:layout_marginTop="3dp"
|
|
|
|
android:background="?attr/colorSeparator"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent" />
|
|
|
|
|
|
|
|
<eu.faircode.email.FixedTextView
|
|
|
|
android:id="@+id/tvActionTitle"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginStart="6dp"
|
|
|
|
android:layout_marginTop="3dp"
|
|
|
|
android:layout_marginEnd="6dp"
|
|
|
|
android:text="@string/title_conversation_actions"
|
|
|
|
android:textAppearance="@style/TextAppearance.AppCompat.Small"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toBottomOf="@id/vSeparatorAction" />
|
|
|
|
|
2020-03-19 16:02:44 +00:00
|
|
|
<androidx.constraintlayout.helper.widget.Flow
|
|
|
|
android:id="@+id/flow"
|
2020-03-19 13:26:33 +00:00
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
2020-03-19 16:02:44 +00:00
|
|
|
app:flow_horizontalBias="0"
|
|
|
|
app:flow_horizontalGap="6dp"
|
|
|
|
app:flow_horizontalStyle="packed"
|
|
|
|
app:flow_wrapMode="chain"
|
2020-03-19 13:26:33 +00:00
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toBottomOf="@id/tvActionTitle" />
|
|
|
|
|
|
|
|
<androidx.constraintlayout.widget.Group
|
|
|
|
android:id="@+id/grpAction"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="0dp"
|
2020-03-19 16:02:44 +00:00
|
|
|
app:constraint_referenced_ids="vSeparatorAction,tvActionTitle,flow" />
|
2020-03-19 13:26:33 +00:00
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|