64 lines
2.2 KiB
XML
64 lines
2.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
style="?android:attr/buttonBarStyle"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal" >
|
|
|
|
<!-- <ImageButton -->
|
|
<!-- style="?android:attr/buttonBarStyle" -->
|
|
<!-- android:id="@+id/add_feature_button" -->
|
|
<!-- android:layout_width="0dp" -->
|
|
<!-- android:layout_height="wrap_content" -->
|
|
<!-- android:layout_weight="1" -->
|
|
<!-- android:src="@android:drawable/ic_menu_add" /> -->
|
|
|
|
|
|
<!-- <ImageButton -->
|
|
<!-- style="?android:attr/buttonBarStyle" -->
|
|
<!-- android:src="@android:drawable/ic_menu_save" -->
|
|
<!-- android:id="@+id/save_ringer_button" -->
|
|
<!-- android:layout_width="0dp" -->
|
|
<!-- android:layout_height="wrap_content" -->
|
|
<!-- android:layout_weight="1" -->
|
|
|
|
|
|
<!-- /> -->
|
|
|
|
<ImageButton
|
|
android:id="@+id/mark_my_location"
|
|
style="?android:attr/buttonBarStyle"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:contentDescription="@string/mark_my_location"
|
|
android:src="@android:drawable/ic_menu_myplaces" />
|
|
|
|
<ImageButton
|
|
android:id="@+id/my_location"
|
|
style="?android:attr/buttonBarStyle"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:contentDescription="@string/my_location"
|
|
android:src="@android:drawable/ic_menu_mylocation" />
|
|
|
|
<ImageButton
|
|
android:id="@+id/map_mode"
|
|
style="?android:attr/buttonBarStyle"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:contentDescription="@string/map_mode"
|
|
android:src="@android:drawable/ic_menu_mapmode" />
|
|
|
|
<ImageButton
|
|
android:id="@+id/search"
|
|
style="?android:attr/buttonBarStyle"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:contentDescription="@string/search"
|
|
android:src="@android:drawable/ic_menu_search" />
|
|
|
|
</LinearLayout> |