diff options
| author | Samuel Tardieu <sam@rfc1149.net> | 2011-09-16 14:36:28 +0200 |
|---|---|---|
| committer | Samuel Tardieu <sam@rfc1149.net> | 2011-09-16 14:36:28 +0200 |
| commit | 579ef7a535489d4aa632db11667a3b01deb6cafd (patch) | |
| tree | 55810021c02ac7d80d3a9702ef0b59e4af154b9c /main/res/layout/popup.xml | |
| parent | 96ea21fd50334479c262da692038965d0e4d596a (diff) | |
| download | cgeo-579ef7a535489d4aa632db11667a3b01deb6cafd.zip cgeo-579ef7a535489d4aa632db11667a3b01deb6cafd.tar.gz cgeo-579ef7a535489d4aa632db11667a3b01deb6cafd.tar.bz2 | |
Move sources into the main directory
This prepares the inclusion of tests into the same repository.
Diffstat (limited to 'main/res/layout/popup.xml')
| -rw-r--r-- | main/res/layout/popup.xml | 81 |
1 files changed, 81 insertions, 0 deletions
diff --git a/main/res/layout/popup.xml b/main/res/layout/popup.xml new file mode 100644 index 0000000..93f0622 --- /dev/null +++ b/main/res/layout/popup.xml @@ -0,0 +1,81 @@ +<?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_transparent" > + <LinearLayout style="@style/action_bar"> + <TextView style="@style/action_bar_title" /> + <View style="@style/action_bar_separator" /> + <ImageView style="@style/action_bar_action" + android:src="@drawable/actionbar_compass" + android:onClick="goCompass" /> + <View style="@style/action_bar_separator" + android:id="@+id/separator" + /> + <ImageView style="@style/action_bar_action" + android:src="@drawable/actionbar_manual" + android:onClick="goManual" /> + </LinearLayout> + <ScrollView android:id="@+id/details_list_box" + android:visibility="gone" + android:layout_width="fill_parent" + android:layout_height="fill_parent" + android:padding="4dip" + android:orientation="vertical" > + <LinearLayout + android:layout_width="fill_parent" + android:layout_height="fill_parent" + android:orientation="vertical" > + <LinearLayout android:id="@+id/details_list" + android:layout_width="fill_parent" + android:layout_height="wrap_content" + android:orientation="vertical" > + </LinearLayout> + <LinearLayout android:id="@+id/more_details_box" + android:visibility="gone" + android:layout_width="fill_parent" + android:layout_height="wrap_content" + android:orientation="vertical" > + <Button style="@style/button_small" + android:id="@+id/more_details" + android:text="@string/popup_more" /> + </LinearLayout> + <LinearLayout android:id="@+id/offline_box" + android:visibility="gone" + android:layout_width="fill_parent" + android:layout_height="wrap_content" + android:orientation="vertical" > + <RelativeLayout style="@style/separator_horizontal_layout" > + <View style="@style/separator_horizontal" /> + </RelativeLayout> + <RelativeLayout + android:layout_width="fill_parent" + android:layout_height="wrap_content" > + <TextView android:id="@+id/offline_text" + android:layout_width="fill_parent" + android:layout_height="wrap_content" + android:layout_marginLeft="6dip" + android:layout_marginRight="130dip" + android:layout_alignParentLeft="true" + android:layout_gravity="left" + android:paddingRight="3dip" + android:textSize="14dip" + android:textColor="?text_color" /> + <Button style="@style/button_small" + android:id="@+id/offline_refresh" + android:visibility="gone" + android:layout_width="60dip" + android:layout_marginRight="71dip" + android:layout_alignParentRight="true" + android:text="@string/cache_offline_refresh" /> + <Button style="@style/button_small" + android:id="@+id/offline_store" + android:layout_width="60dip" + android:layout_alignParentRight="true" + android:text="@string/cache_offline_store" /> + </RelativeLayout> + </LinearLayout> + </LinearLayout> + </ScrollView> +</LinearLayout>
\ No newline at end of file |
