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="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal"
|
|
>
|
|
|
|
<Button
|
|
android:background="@android:drawable/ic_menu_add"
|
|
android:id="@+id/add_feature_button"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginRight="20dip"
|
|
/>
|
|
|
|
<Button
|
|
android:background="@android:drawable/ic_menu_save"
|
|
android:id="@+id/save_ringer_button"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
/>
|
|
|
|
<Button
|
|
android:background="@android:drawable/ic_menu_myplaces"
|
|
android:id="@+id/mark_my_location"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="20dip"
|
|
android:visibility="gone"
|
|
/>
|
|
|
|
<Button
|
|
android:background="@android:drawable/ic_menu_mylocation"
|
|
android:id="@+id/my_location"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_centerHorizontal="true"
|
|
android:layout_marginLeft="20dip"
|
|
android:visibility="gone"
|
|
/>
|
|
|
|
<Button
|
|
android:background="@android:drawable/ic_menu_mapmode"
|
|
android:id="@+id/map_mode"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_centerHorizontal="true"
|
|
android:layout_marginLeft="20dip"
|
|
android:visibility="gone"
|
|
/>
|
|
|
|
<Button
|
|
android:background="@android:drawable/ic_menu_search"
|
|
android:id="@+id/search"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_centerHorizontal="true"
|
|
android:layout_marginLeft="20dip"
|
|
android:visibility="gone"
|
|
/>
|
|
</LinearLayout> |