diff options
author | Teddy <[email protected]> | 2013-08-28 16:32:50 +0800 |
---|---|---|
committer | Teddy <[email protected]> | 2013-08-28 16:32:50 +0800 |
commit | 10af199a81c3b7ca338a7aeb3ab599ff1be7ecb1 (patch) | |
tree | 06c26b1471f431a53252fd3629a5b561bdf21c7b /client/Piztor/res | |
parent | 1bc497952316e08e73c71d6839a9e42e40196fb6 (diff) | |
parent | 0a8315a94d8ed1252f3f96d4ca41ddc632c3bc98 (diff) |
Merge branch 'master' of github.com:Determinant/piztor
Diffstat (limited to 'client/Piztor/res')
-rw-r--r-- | client/Piztor/res/drawable/marka.png | bin | 0 -> 3371 bytes | |||
-rw-r--r-- | client/Piztor/res/layout/activity_main.xml | 61 | ||||
-rw-r--r-- | client/Piztor/res/layout/activity_settings.xml | 2 | ||||
-rw-r--r-- | client/Piztor/res/values/strings.xml | 1 |
4 files changed, 33 insertions, 31 deletions
diff --git a/client/Piztor/res/drawable/marka.png b/client/Piztor/res/drawable/marka.png Binary files differnew file mode 100644 index 0000000..a478d36 --- /dev/null +++ b/client/Piztor/res/drawable/marka.png diff --git a/client/Piztor/res/layout/activity_main.xml b/client/Piztor/res/layout/activity_main.xml index a36f8b5..f72ac62 100644 --- a/client/Piztor/res/layout/activity_main.xml +++ b/client/Piztor/res/layout/activity_main.xml @@ -1,33 +1,34 @@ <?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" - android:layout_width="match_parent" - android:layout_height="wrap_content" - android:background="@android:color/white" - android:orientation="vertical"> - <RelativeLayout - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:layout_alignParentTop="true" - android:id="@+id/main_headbar_layout" - > - <include layout="@layout/main_headbar"/> - </RelativeLayout> - - <LinearLayout - android:id="@+id/main_footbar_layout" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:layout_alignParentBottom="true" - > - <include layout="@layout/main_footbar"/> - </LinearLayout> + xmlns:android1="http://schemas.android.com/apk/res/android" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:background="@android:color/white" > - <ImageView - android:id="@+id/main_mapview" - android:layout_width="fill_parent" - android:layout_height="fill_parent" - android:layout_below="@+id/main_headbar_layout" - android:layout_above="@+id/main_footbar_layout" - android:scaleType="matrix" - android:src="@drawable/data"/> -</RelativeLayout>
\ No newline at end of file + <RelativeLayout + android:id="@+id/main_headbar_layout" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_alignParentTop="true" > + + <include layout="@layout/main_headbar" /> + </RelativeLayout> + + <LinearLayout + android:id="@+id/main_footbar_layout" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_alignParentBottom="true" > + + <include layout="@layout/main_footbar" /> + </LinearLayout> + + <com.baidu.mapapi.map.MapView + android:id="@+id/bmapView" + android:layout_width="fill_parent" + android:layout_height="fill_parent" + android:layout_above="@+id/main_footbar_layout" + android:layout_below="@+id/main_headbar_layout" + android:clickable="true" /> + +</RelativeLayout> diff --git a/client/Piztor/res/layout/activity_settings.xml b/client/Piztor/res/layout/activity_settings.xml index 05c849b..c386ae2 100644 --- a/client/Piztor/res/layout/activity_settings.xml +++ b/client/Piztor/res/layout/activity_settings.xml @@ -153,7 +153,7 @@ android:background="#ffc0c3c4" /> <Button - android:id="@+id/button1" + android:id="@+id/settings_btn_logout" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_weight="0.00" diff --git a/client/Piztor/res/values/strings.xml b/client/Piztor/res/values/strings.xml index 4268ca1..5500982 100644 --- a/client/Piztor/res/values/strings.xml +++ b/client/Piztor/res/values/strings.xml @@ -17,5 +17,6 @@ <string name="title_activity_login">Login</string> <string name="title_activity_main">Main</string> <string name="title_activity_settings">Settings</string> + <string name="title_activity_mapmaker">MapMaker</string> </resources> |