62 lines
1.8 KiB
XML
62 lines
1.8 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical" >
|
|
|
|
<LinearLayout
|
|
android:layout_marginTop="10dp"
|
|
android:orientation="horizontal"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_margin="10dp" >
|
|
|
|
<Button
|
|
android:id="@+id/bAddPoi"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/addPoi" />
|
|
|
|
<TextView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:text="@string/clickAndHoldForOptions"
|
|
android:gravity="center"/>
|
|
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
android:layout_marginTop="10dp"
|
|
android:orientation="horizontal"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="@color/barBackgroundColor" >
|
|
|
|
<TextView
|
|
android:id="@+id/tvRuleTitle"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/poiList"
|
|
android:layout_marginLeft="10dp"
|
|
android:textAppearance="?android:attr/textAppearanceLarge" />
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
<LinearLayout
|
|
android:layout_marginTop="10dp"
|
|
android:orientation="horizontal"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_margin="10dp" >
|
|
|
|
<ListView
|
|
android:id="@+id/lvPoiList"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent" >
|
|
</ListView>
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|