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

22 lines
941 B
XML
Raw Normal View History

2021-06-26 13:14:59 +00:00
<?xml version="1.0" encoding="utf-8"?>
2022-05-04 11:09:41 +00:00
<eu.faircode.email.FrameLayoutEx xmlns:android="http://schemas.android.com/apk/res/android"
2021-06-26 13:14:59 +00:00
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content">
2022-05-04 11:09:41 +00:00
<eu.faircode.email.ConstraintLayoutEx
2021-06-26 13:14:59 +00:00
android:id="@+id/clItem"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<CheckBox
android:id="@+id/cbEnabled"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:text="blocklist"
android:textAppearance="@style/TextAppearance.AppCompat.Small"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
2022-05-04 11:09:41 +00:00
</eu.faircode.email.ConstraintLayoutEx>
</eu.faircode.email.FrameLayoutEx>