5141f9f6da
This will not change in the layout, it's here just to better maintain the code.
42 lines
No EOL
1.2 KiB
XML
42 lines
No EOL
1.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:paddingBottom="5dp"
|
|
android:paddingTop="5dp">
|
|
|
|
<LinearLayout
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="fill_parent"
|
|
android:orientation="horizontal"
|
|
android:paddingLeft="6dp"
|
|
android:paddingRight="3dp">
|
|
|
|
<ImageView
|
|
android:id="@+id/poi_direction"
|
|
android:layout_width="26dp"
|
|
android:layout_height="26dp" />
|
|
|
|
<ImageView
|
|
android:id="@+id/poi_icon"
|
|
android:layout_width="26dp"
|
|
android:layout_height="26dp"
|
|
android:layout_marginLeft="3dp" />
|
|
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="fill_parent"
|
|
android:paddingRight="3dp">
|
|
|
|
<TextView
|
|
android:id="@+id/poi_label"
|
|
style="@style/ListText.Small"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent"
|
|
android:gravity="center_vertical" />
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout> |