Files
location_ringer/LocationRinger/res/layout/ringer_info_button_bar.xml
Ricky Barrette accdf02af2 Cleaned up the location information fragment
The button bar is now properly designed
The map fragment no longer has a user overlay to confuse things
refactored some code

Signed-off-by: Ricky Barrette <rickbarrette@gmail.com>
2012-05-12 01:04:57 -04:00

60 lines
2.0 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: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: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: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:src="@android:drawable/ic_menu_search" />
</LinearLayout>