2019-09-18 22:29:09 +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"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2019-11-22 22:41:40 +01:00
|
|
|
android:orientation="vertical"
|
|
|
|
android:padding="8dp"
|
|
|
|
android:background="?selectableItemBackground">
|
2019-09-18 22:29:09 +02:00
|
|
|
|
2019-11-22 22:41:40 +01:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/title"
|
|
|
|
android:layout_width="wrap_content"
|
2019-09-18 22:29:09 +02:00
|
|
|
android:layout_height="wrap_content"
|
2019-11-22 22:41:40 +01:00
|
|
|
android:textAppearance="@style/NavView.TextView.Medium"
|
|
|
|
tools:text="Dzisiaj 1 to szczęśliwy numerek" />
|
2019-09-18 22:29:09 +02:00
|
|
|
|
2019-11-22 22:41:40 +01:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/profileDate"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1"
|
|
|
|
tools:text="Władca Androida • 22 listopada" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/type"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
tools:text="Szczęśliwy numerek" />
|
|
|
|
</LinearLayout>
|
2019-09-18 22:29:09 +02:00
|
|
|
|
|
|
|
</LinearLayout>
|