mirror of
https://codeberg.org/comaps/comaps
synced 2025-12-29 01:03:46 +00:00
30 lines
1.2 KiB
XML
30 lines
1.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout
|
|
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:orientation="horizontal"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="@drawable/bg_clickable_card"
|
|
android:paddingStart="@dimen/margin_quarter"
|
|
android:paddingEnd="@dimen/dp_0"
|
|
android:paddingVertical="@dimen/margin_half_plus">
|
|
<com.google.android.material.imageview.ShapeableImageView
|
|
android:id="@+id/image"
|
|
android:layout_width="@dimen/nav_icon_size"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_vertical"
|
|
app:tint="?colorSecondary"
|
|
tools:srcCompat="@drawable/ic_import" />
|
|
<com.google.android.material.textview.MaterialTextView
|
|
android:id="@+id/text"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_vertical"
|
|
android:fontFamily="@string/robotoMedium"
|
|
tools:text="Some text should go here"
|
|
android:textAppearance="@style/MwmTextAppearance.Body1"
|
|
android:textColor="?colorSecondary"/>
|
|
</LinearLayout>
|