40 lines
1.5 KiB
XML
40 lines
1.5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:orientation="horizontal"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<ImageView android:id="@+id/wiki_locs_item_img_preview"
|
|
android:layout_width="120dp"
|
|
android:layout_height="120dp"/>
|
|
|
|
<LinearLayout android:id="@+id/wiki_locs_item_desc_container"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:orientation="vertical">
|
|
|
|
<TextView android:id="@+id/wiki_locs_item_title"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="Fill Title" />
|
|
|
|
<TextView android:id="@+id/wiki_locs_item_desc"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="Fill Description" />
|
|
|
|
<TextView android:id="@+id/wiki_locs_item_author"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="Fill Author" />
|
|
|
|
<TextView android:id="@+id/wiki_locs_item_distance"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="Fill Distance" />
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout> |