40 lines
1.2 KiB
XML
40 lines
1.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<org.joinmastodon.android.ui.views.CheckableRelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:paddingTop="16dp"
|
|
android:paddingRight="16dp"
|
|
android:paddingLeft="16dp"
|
|
android:clipToPadding="false">
|
|
|
|
<FrameLayout
|
|
android:id="@+id/checkbox_wrap"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="46sp"
|
|
android:duplicateParentState="true">
|
|
|
|
<View
|
|
android:id="@+id/checkbox"
|
|
android:layout_gravity="center_vertical"
|
|
android:layout_width="32dp"
|
|
android:layout_height="32dp"
|
|
android:layout_marginStart="-4dp"
|
|
android:layout_marginTop="0dp"
|
|
android:layout_marginEnd="12dp"
|
|
android:duplicateParentState="true"/>
|
|
|
|
</FrameLayout>
|
|
|
|
<FrameLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="-16dp"
|
|
android:layout_marginStart="-16dp"
|
|
android:layout_toEndOf="@id/checkbox_wrap">
|
|
|
|
<include layout="@layout/display_item_header" />
|
|
|
|
</FrameLayout>
|
|
|
|
</org.joinmastodon.android.ui.views.CheckableRelativeLayout> |