1
0
Fork 0
mirror of https://github.com/gsantner/dandelion synced 2024-07-01 07:46:46 +02:00
dandelion/app/src/main/res/layout/recycler_view__list_item.xml

27 lines
1.1 KiB
XML
Raw Normal View History

2016-09-30 23:15:10 +02:00
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
2016-09-30 23:15:10 +02:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/recycler_view__list_item__root"
2016-09-30 23:15:10 +02:00
android:orientation="vertical">
2016-09-30 23:15:10 +02:00
<View
android:id="@+id/recycler_view__list_item__divider"
2016-09-30 23:15:10 +02:00
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="@color/divider" />
2016-09-30 23:15:10 +02:00
<TextView
android:id="@+id/recycler_view__list_item__text"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="12dp"
2016-09-30 23:15:10 +02:00
android:layout_marginEnd="@dimen/activity_horizontal_margin"
android:layout_marginStart="@dimen/activity_horizontal_margin"
2016-09-30 23:15:10 +02:00
android:layout_marginTop="12dp"
android:textAppearance="@style/TextAppearance.AppCompat.Large"
android:textColor="@color/primary_text"
tools:text="Very much text" />
2016-09-30 23:15:10 +02:00
</LinearLayout>