diff options
author | sjtufs <[email protected]> | 2013-08-28 17:32:17 +0800 |
---|---|---|
committer | sjtufs <[email protected]> | 2013-08-28 17:32:17 +0800 |
commit | 6d2cbdae51c0cc2a1e2c898dcfc73df49e87682c (patch) | |
tree | fb4aad81ddb7a6879528702ba6f1ee0d5a133f2a /client/Piztor/res | |
parent | f2786f75014ddbe3ab0c73892feb216ef95a59e5 (diff) |
Markers (Other Users) are now "touchable"
Diffstat (limited to 'client/Piztor/res')
-rw-r--r-- | client/Piztor/res/drawable/pop.png | bin | 0 -> 1312 bytes | |||
-rw-r--r-- | client/Piztor/res/drawable/popup_down.png | bin | 0 -> 2998 bytes | |||
-rw-r--r-- | client/Piztor/res/drawable/popup_left.png | bin | 0 -> 2902 bytes | |||
-rw-r--r-- | client/Piztor/res/drawable/popup_middle.png | bin | 0 -> 3100 bytes | |||
-rw-r--r-- | client/Piztor/res/drawable/popup_right.png | bin | 0 -> 2917 bytes | |||
-rw-r--r-- | client/Piztor/res/drawable/popup_side.png | bin | 0 -> 3040 bytes | |||
-rw-r--r-- | client/Piztor/res/layout/custom_text_view.xml | 61 |
7 files changed, 61 insertions, 0 deletions
diff --git a/client/Piztor/res/drawable/pop.png b/client/Piztor/res/drawable/pop.png Binary files differnew file mode 100644 index 0000000..07e897a --- /dev/null +++ b/client/Piztor/res/drawable/pop.png diff --git a/client/Piztor/res/drawable/popup_down.png b/client/Piztor/res/drawable/popup_down.png Binary files differnew file mode 100644 index 0000000..8dad382 --- /dev/null +++ b/client/Piztor/res/drawable/popup_down.png diff --git a/client/Piztor/res/drawable/popup_left.png b/client/Piztor/res/drawable/popup_left.png Binary files differnew file mode 100644 index 0000000..98c81b6 --- /dev/null +++ b/client/Piztor/res/drawable/popup_left.png diff --git a/client/Piztor/res/drawable/popup_middle.png b/client/Piztor/res/drawable/popup_middle.png Binary files differnew file mode 100644 index 0000000..750b455 --- /dev/null +++ b/client/Piztor/res/drawable/popup_middle.png diff --git a/client/Piztor/res/drawable/popup_right.png b/client/Piztor/res/drawable/popup_right.png Binary files differnew file mode 100644 index 0000000..84745ff --- /dev/null +++ b/client/Piztor/res/drawable/popup_right.png diff --git a/client/Piztor/res/drawable/popup_side.png b/client/Piztor/res/drawable/popup_side.png Binary files differnew file mode 100644 index 0000000..49135ca --- /dev/null +++ b/client/Piztor/res/drawable/popup_side.png diff --git a/client/Piztor/res/layout/custom_text_view.xml b/client/Piztor/res/layout/custom_text_view.xml new file mode 100644 index 0000000..5ef1c9f --- /dev/null +++ b/client/Piztor/res/layout/custom_text_view.xml @@ -0,0 +1,61 @@ +<?xml version="1.0" encoding="utf-8"?> + + <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" + android:orientation="horizontal" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + > + + <TextView + android:id="@+id/popleft" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:background="@drawable/popup_side" + android:gravity="center" + android:textStyle="bold" + android:textColor="#3814ed" + android:text="更新位置" + android:textSize="12sp" /> + + + <LinearLayout + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:orientation="vertical" + android:id="@+id/popinfo" + > + + <TextView + android:id="@+id/textcache" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:background="@drawable/popup_middle" + android:gravity="center" + android:textStyle="bold" + android:textColor="@android:color/black" + android:textSize="12sp" /> + + <TextView + android:id="@+id/popdown" + android:layout_width="fill_parent" + android:layout_height="wrap_content" + android:background="@drawable/popup_down" + android:textColor="@android:color/black" + android:textSize="12sp" /> + + + </LinearLayout> + + + <TextView + android:id="@+id/popright" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:background="@drawable/popup_side" + android:textColor="#3814ed" + android:gravity="center" + android:textStyle="bold" + android:text="更新marker" + android:textSize="12sp" /> + +</LinearLayout> |