Mercury-IM/app/src/main/res/layout/view_fingerprints_card_togg...

43 lines
1.8 KiB
XML
Raw Normal View History

2020-07-09 02:10:47 +02:00
<?xml version="1.0" encoding="utf-8"?>
<com.google.android.material.card.MaterialCardView
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"
2020-07-09 02:10:47 +02:00
app:cardCornerRadius="4dp"
app:cardElevation="4dp">
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
2020-07-09 02:10:47 +02:00
android:orientation="vertical"
android:paddingStart="12dp"
android:paddingEnd="12dp"
2020-07-13 01:39:26 +02:00
android:paddingTop="12dp"
android:paddingBottom="12dp">
2020-07-09 02:10:47 +02:00
<TextView
android:id="@+id/title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Other Fingerprints"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<androidx.recyclerview.widget.RecyclerView
2020-07-09 02:10:47 +02:00
android:id="@+id/fingerprint_list"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
2020-10-24 19:25:28 +02:00
tools:listitem="@layout/view_openpgp_4_fingerprint_toggleable"
2020-07-09 02:10:47 +02:00
android:layout_centerHorizontal="true"
android:layout_marginTop="8dp"
2020-07-13 01:39:26 +02:00
app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager"
2020-07-09 02:10:47 +02:00
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.5"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/title"/>
</androidx.constraintlayout.widget.ConstraintLayout>
</com.google.android.material.card.MaterialCardView>