Files
AndroidJava/dash-wallet/wallet/res/layout/notification_header_row.xml
T
coco 7846a45f2c a
2026-07-03 15:47:27 +08:00

27 lines
1.1 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">
<TextView
android:id="@+id/title"
style="@style/Subtitle2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/contacts_contact_requests"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="@+id/center_guideline"
app:layout_constraintBottom_toBottomOf="@+id/center_guideline"
tools:text="New or Earlier" />
<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>