FairEmail/app/src/main/res/layout/spinner_item1.xml

17 lines
796 B
XML
Raw Normal View History

2018-11-11 13:31:43 +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"
android:layout_width="match_parent"
2019-04-16 18:44:50 +00:00
android:layout_height="wrap_content"
android:padding="12dp">
2018-11-11 13:31:43 +00:00
2020-02-28 16:34:43 +00:00
<eu.faircode.email.FixedTextView
2018-11-11 13:31:43 +00:00
android:id="@android:id/text1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
2018-11-11 14:09:46 +00:00
android:text="Text1"
2018-11-11 13:31:43 +00:00
android:textAppearance="@style/TextAppearance.AppCompat.Medium"
2018-11-11 14:09:46 +00:00
app:layout_constraintBottom_toBottomOf="parent"
2018-11-11 13:31:43 +00:00
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>