mirror of
https://github.com/szkolny-eu/szkolny-android.git
synced 2025-04-03 23:34:27 +02:00
45 lines
1.6 KiB
XML
45 lines
1.6 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="?selectableItemBackground"
|
|
android:focusable="true"
|
|
android:gravity="center_vertical"
|
|
android:minHeight="62dp"
|
|
android:orientation="horizontal"
|
|
android:paddingHorizontal="24dp">
|
|
|
|
<com.mikepenz.materialdrawer.view.BezelImageView
|
|
android:id="@+id/image"
|
|
android:layout_width="40dp"
|
|
android:layout_height="40dp"
|
|
android:layout_marginEnd="16dp"
|
|
android:layout_marginRight="16dp"
|
|
android:scaleType="centerCrop"
|
|
tools:ignore="ContentDescription"
|
|
tools:srcCompat="@tools:sample/backgrounds/scenic" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_vertical"
|
|
android:layout_weight="1"
|
|
android:orientation="vertical">
|
|
|
|
<TextView
|
|
android:id="@+id/name"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textAppearance="@style/NavView.TextView.Medium"
|
|
tools:text="Title" />
|
|
|
|
<TextView
|
|
android:id="@+id/subname"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textAppearance="@style/NavView.TextView.Small"
|
|
tools:text="SubTitle" />
|
|
</LinearLayout>
|
|
</LinearLayout>
|