2017-08-12 06:50:25 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2017-09-03 03:04:18 -03:00
|
|
|
<LinearLayout
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
2017-08-12 06:50:25 +02:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="?attr/selectableItemBackground"
|
|
|
|
android:clickable="true"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:paddingBottom="8dp"
|
2017-09-03 03:04:18 -03:00
|
|
|
android:paddingLeft="@dimen/activity_horizontal_margin"
|
|
|
|
android:paddingRight="@dimen/activity_horizontal_margin"
|
2018-08-28 19:25:56 +02:00
|
|
|
android:paddingTop="8dp"
|
|
|
|
android:focusable="true">
|
2017-08-12 06:50:25 +02:00
|
|
|
|
|
|
|
<TextView
|
2018-01-28 18:26:19 -08:00
|
|
|
android:id="@+id/info"
|
2017-08-12 06:50:25 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2017-09-03 03:04:18 -03:00
|
|
|
tools:text="10/11/2017 11:32"/>
|
2017-08-12 06:50:25 +02:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/search"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
2017-09-03 03:04:18 -03:00
|
|
|
tools:text="Search query"/>
|
2017-08-12 06:50:25 +02:00
|
|
|
</LinearLayout>
|