diff options
| author | rsudev <rasch@munin-soft.de> | 2011-09-20 07:40:41 +0200 |
|---|---|---|
| committer | rsudev <rasch@munin-soft.de> | 2011-09-20 07:56:41 +0200 |
| commit | a2f2c5db407dd27d9c24cccb42dd45450f8c20af (patch) | |
| tree | e18186c3f2a48708b58abddc8894a63c9735bb6f /main/res/layout/map_google.xml | |
| parent | 617d43896cc074a8233e6fdb7f96568afd4f331a (diff) | |
| download | cgeo-a2f2c5db407dd27d9c24cccb42dd45450f8c20af.zip cgeo-a2f2c5db407dd27d9c24cccb42dd45450f8c20af.tar.gz cgeo-a2f2c5db407dd27d9c24cccb42dd45450f8c20af.tar.bz2 | |
Renamed map classes to uppercase
Diffstat (limited to 'main/res/layout/map_google.xml')
| -rw-r--r-- | main/res/layout/map_google.xml | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/main/res/layout/map_google.xml b/main/res/layout/map_google.xml new file mode 100644 index 0000000..af55cb2 --- /dev/null +++ b/main/res/layout/map_google.xml @@ -0,0 +1,49 @@ +<?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="fill_parent" + android:orientation="vertical" + android:background="?background_color" > + <LinearLayout style="@style/action_bar"> + <ImageView style="@style/action_bar_action" + android:onClick="goHome" /> + <View style="@style/action_bar_separator" /> + <TextView style="@style/action_bar_title" /> + <ProgressBar style="@style/action_bar_progress" + android:visibility="gone" /> + <View style="@style/action_bar_separator" /> + <ImageSwitcher style="@style/action_bar_action" + android:id="@+id/my_position" /> + <View style="@style/action_bar_separator" /> + <ImageView style="@style/action_bar_action" + android:src="@drawable/actionbar_manual" + android:onClick="goManual" /> + </LinearLayout> + <include layout="@layout/filter_bar"/> + <RelativeLayout + android:layout_width="fill_parent" + android:layout_height="fill_parent" > + <TextView android:id="@+id/number" + android:visibility="gone" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_margin="5dip" + android:gravity="center_horizontal" + android:paddingLeft="5dip" + android:paddingRight="5dip" + android:lines="1" + android:singleLine="true" + android:scrollHorizontally="true" + android:ellipsize="marquee" + android:textSize="12dip" + android:textColor="@color/text_icon" + android:background="@drawable/icon_bcg" /> + <view class="cgeo.geocaching.maps.google.GoogleMapView" android:id="@+id/map" + android:layout_width="fill_parent" + android:layout_height="fill_parent" + android:keepScreenOn="true" + android:enabled="true" + android:clickable="true" + android:apiKey="@string/maps_api_key" /> + </RelativeLayout> +</LinearLayout>
\ No newline at end of file |
