53 lines
2.0 KiB
XML
53 lines
2.0 KiB
XML
<?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="35dp">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal"
|
|
app:layout_constraintBottom_toBottomOf="@+id/center_guideline"
|
|
app:layout_constraintTop_toTopOf="@id/center_guideline">
|
|
|
|
<TextView
|
|
android:id="@+id/title"
|
|
style="@style/Subtitle1"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="10dp"
|
|
android:text="@string/contacts_contact_requests"
|
|
tools:text="New or Earlier" />
|
|
|
|
<ImageView
|
|
android:id="@+id/activity_info"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="8dp"
|
|
android:visibility="gone"
|
|
app:srcCompat="@drawable/ic_activity_info"
|
|
tools:visibility="visible" />
|
|
|
|
<Spinner
|
|
android:id="@+id/history_filter"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="end"
|
|
android:layout_weight="1"
|
|
android:background="@android:color/transparent"
|
|
android:gravity="end"
|
|
android:textAlignment="textEnd"
|
|
app:layout_constraintEnd_toEndOf="parent" />
|
|
</LinearLayout>
|
|
|
|
<androidx.constraintlayout.widget.Guideline
|
|
android:id="@+id/center_guideline"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal"
|
|
app:layout_constraintGuide_percent="0.50" />
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|