mirror of
https://codeberg.org/comaps/comaps
synced 2026-01-01 10:33:45 +00:00
44 lines
1.8 KiB
XML
44 lines
1.8 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout
|
|
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:background="?clickableBackground"
|
|
android:gravity="center_vertical"
|
|
android:orientation="horizontal">
|
|
<com.google.android.material.checkbox.MaterialCheckBox
|
|
android:id="@+id/checkbox"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"
|
|
android:layout_marginStart="@dimen/margin_half_double_plus"
|
|
android:layout_marginEnd="@dimen/margin_half_double_plus" />
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical">
|
|
<com.google.android.material.textview.MaterialTextView
|
|
android:id="@+id/name"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="@dimen/margin_base"
|
|
android:layout_marginEnd="@dimen/bookmark_collection_item_end_margin"
|
|
android:ellipsize="middle"
|
|
android:singleLine="true"
|
|
android:textAppearance="@style/MwmTextAppearance.Body1"
|
|
tools:text="Bookmark name looooooooooooooooooongasdasdasd" />
|
|
<com.google.android.material.textview.MaterialTextView
|
|
android:id="@+id/size"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_vertical"
|
|
android:layout_marginEnd="@dimen/bookmark_collection_item_end_margin"
|
|
android:layout_marginBottom="@dimen/margin_half_plus"
|
|
android:ellipsize="end"
|
|
android:singleLine="true"
|
|
android:textColor="?android:textColorSecondary"
|
|
style="@style/MwmTextAppearance.Body2"
|
|
tools:text="42000000" />
|
|
</LinearLayout>
|
|
</LinearLayout>
|