diff options
| author | koem <koem@petoria.de> | 2013-02-08 18:25:01 +1300 |
|---|---|---|
| committer | koem <koem@petoria.de> | 2013-02-08 18:25:01 +1300 |
| commit | ebda1db90874465df018d5b3c65e5c4393839fe6 (patch) | |
| tree | 73640ebeeaa354449ced45702dbdc00e3cbf00c9 /main/res/layout | |
| parent | a6443368f75b9635a6ce83328c04eb53b172c906 (diff) | |
| download | cgeo-ebda1db90874465df018d5b3c65e5c4393839fe6.zip cgeo-ebda1db90874465df018d5b3c65e5c4393839fe6.tar.gz cgeo-ebda1db90874465df018d5b3c65e5c4393839fe6.tar.bz2 | |
issue #275 - Move to other list from cache screen
and: choose list when storing
Diffstat (limited to 'main/res/layout')
| -rw-r--r-- | main/res/layout/cacheview_details.xml | 41 | ||||
| -rw-r--r-- | main/res/layout/init.xml | 55 |
2 files changed, 70 insertions, 26 deletions
diff --git a/main/res/layout/cacheview_details.xml b/main/res/layout/cacheview_details.xml index 62ee2af..be9219b 100644 --- a/main/res/layout/cacheview_details.xml +++ b/main/res/layout/cacheview_details.xml @@ -181,6 +181,47 @@ </RelativeLayout>
</LinearLayout>
+ <!-- list box -->
+
+ <LinearLayout
+ android:id="@+id/list_box"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:orientation="vertical"
+ android:visibility="gone" >
+
+ <View
+ style="@style/separator_horizontal"
+ android:layout_marginBottom="9dp"
+ android:layout_marginTop="9dp" />
+
+ <RelativeLayout
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content" >
+
+ <TextView
+ android:id="@+id/list_text"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:layout_alignParentLeft="true"
+ android:layout_gravity="left"
+ android:layout_centerVertical="true"
+ android:layout_marginLeft="6dip"
+ android:layout_marginRight="130dip"
+ android:paddingRight="3dip"
+ android:textColor="?text_color"
+ android:textSize="14dip" />
+
+ <Button
+ android:id="@+id/change_list"
+ style="@style/button_small"
+ android:layout_alignParentRight="true"
+ android:text="@string/cache_list_change"
+ android:visibility="visible" />
+
+ </RelativeLayout>
+ </LinearLayout>
+
<!-- License Box -->
<LinearLayout
diff --git a/main/res/layout/init.xml b/main/res/layout/init.xml index 6aaed9f..730e5b7 100644 --- a/main/res/layout/init.xml +++ b/main/res/layout/init.xml @@ -197,40 +197,43 @@ <CheckBox android:id="@+id/captcha" style="@style/checkbox_full" android:text="@string/init_captcha" /> + <CheckBox android:id="@+id/livelist" + style="@style/checkbox_full" + android:text="@string/init_livelist" /> <CheckBox android:id="@+id/loaddirectionimg" - style="@style/checkbox_full" + style="@style/checkbox_full" android:text="@string/init_loaddirectionimg" /> - <CheckBox android:id="@+id/useenglish" - style="@style/checkbox_full" - android:text="@string/init_useenglish" /> - <CheckBox android:id="@+id/exclude" - style="@style/checkbox_full" - android:text="@string/init_exclude" /> - <CheckBox android:id="@+id/disabled" - style="@style/checkbox_full" - android:text="@string/init_disabled" /> + <CheckBox android:id="@+id/useenglish" + style="@style/checkbox_full" + android:text="@string/init_useenglish" /> + <CheckBox android:id="@+id/units" + style="@style/checkbox_full" + android:text="@string/init_units" /> + <CheckBox android:id="@+id/exclude" + style="@style/checkbox_full" + android:text="@string/init_exclude" /> + <CheckBox android:id="@+id/disabled" + style="@style/checkbox_full" + android:text="@string/init_disabled" /> <CheckBox android:id="@+id/trackautovisit" - style="@style/checkbox_full" + style="@style/checkbox_full" android:text="@string/init_trackautovisit" /> - <CheckBox android:id="@+id/units" - style="@style/checkbox_full" - android:text="@string/init_units" /> - <CheckBox android:id="@+id/livelist" - style="@style/checkbox_full" - android:text="@string/init_livelist" /> - <CheckBox android:id="@+id/log_offline" - style="@style/checkbox_full" - android:text="@string/init_log_offline" /> - <CheckBox android:id="@+id/trail" - style="@style/checkbox_full" - android:text="@string/init_maptrail" /> + <CheckBox android:id="@+id/log_offline" + style="@style/checkbox_full" + android:text="@string/init_log_offline" /> + <CheckBox android:id="@+id/choose_list" + style="@style/checkbox_full" + android:text="@string/init_choose_list" /> + <CheckBox android:id="@+id/trail" + style="@style/checkbox_full" + android:text="@string/init_maptrail" /> <CheckBox android:id="@+id/plain_logs" - style="@style/checkbox_full" + style="@style/checkbox_full" android:text="@string/init_plain_logs" /> <CheckBox android:id="@+id/use_native_ua" - style="@style/checkbox_full" + style="@style/checkbox_full" android:text="@string/init_use_native_ua" /> - </LinearLayout> + </LinearLayout> <!-- ** --> <RelativeLayout style="@style/separator_horizontal_layout" > <View style="@style/separator_horizontal" /> |
