|
|
@@ -1,286 +1,300 @@
|
|
|
<?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="match_parent"
|
|
|
- android:background="@color/white">
|
|
|
+<LinearLayout
|
|
|
+ xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:background="@color/white"
|
|
|
+ android:orientation="vertical">
|
|
|
|
|
|
|
|
|
- <LinearLayout
|
|
|
- android:id="@+id/top"
|
|
|
- android:layout_width="match_parent"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:background="#F4F4F4"
|
|
|
- android:gravity="center_vertical"
|
|
|
- android:orientation="horizontal"
|
|
|
- android:padding="10dp">
|
|
|
-
|
|
|
- <TextView
|
|
|
- android:id="@+id/meet_save"
|
|
|
- android:layout_width="0dp"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:layout_marginTop="2dp"
|
|
|
- android:layout_weight="1"
|
|
|
- android:drawablePadding="@dimen/padding"
|
|
|
- android:drawableTop="@drawable/oa_save_meet"
|
|
|
- android:gravity="center"
|
|
|
- android:text="@string/meet_details"
|
|
|
- android:textColor="#666666" />
|
|
|
-
|
|
|
- <TextView
|
|
|
- android:id="@+id/add_task_ll"
|
|
|
- android:layout_width="0dp"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:layout_marginTop="2dp"
|
|
|
- android:layout_weight="1"
|
|
|
- android:drawablePadding="@dimen/padding"
|
|
|
- android:drawableTop="@drawable/oa_add_task"
|
|
|
- android:gravity="center"
|
|
|
- android:text="@string/push_task"
|
|
|
- android:textColor="#666666" />
|
|
|
- </LinearLayout>
|
|
|
-
|
|
|
- <RelativeLayout
|
|
|
- android:id="@+id/info"
|
|
|
+ <ScrollView
|
|
|
android:layout_width="match_parent"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:layout_below="@id/top"
|
|
|
- android:background="@color/white"
|
|
|
- android:paddingBottom="10dp"
|
|
|
- android:paddingLeft="10dp"
|
|
|
- android:paddingRight="10dp"
|
|
|
- android:paddingTop="@dimen/padding">
|
|
|
-
|
|
|
- <TextView
|
|
|
- android:id="@+id/name_tv"
|
|
|
- android:layout_width="wrap_content"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:text="标题"
|
|
|
- android:textColor="#333333"
|
|
|
- android:textSize="@dimen/text_main"
|
|
|
- android:textStyle="bold" />
|
|
|
-
|
|
|
- <TextView
|
|
|
- android:id="@+id/status_tv"
|
|
|
- android:layout_width="wrap_content"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:layout_alignParentRight="true"
|
|
|
- android:textColor="@color/hintColor"
|
|
|
- android:textSize="@dimen/text_hine" />
|
|
|
+ android:layout_height="0dp"
|
|
|
+ android:layout_weight="1">
|
|
|
|
|
|
- <View
|
|
|
+ <LinearLayout
|
|
|
android:layout_width="match_parent"
|
|
|
- android:layout_height="0.1dp"
|
|
|
- android:layout_below="@id/name_tv"
|
|
|
- android:layout_marginTop="@dimen/padding"
|
|
|
- android:background="@color/base_bg" />
|
|
|
-
|
|
|
- <TextView
|
|
|
- android:id="@+id/oa_meeting_start"
|
|
|
- android:layout_width="wrap_content"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:layout_below="@id/name_tv"
|
|
|
- android:layout_marginTop="20dp"
|
|
|
- android:drawableLeft="@drawable/ic_meeting_time"
|
|
|
- android:drawablePadding="5dp"
|
|
|
- android:text="06月13日"
|
|
|
- android:textColor="#666666"
|
|
|
- android:textSize="13sp" />
|
|
|
-
|
|
|
- <TextView
|
|
|
- android:id="@+id/oa_meeting_start_date"
|
|
|
- android:layout_width="wrap_content"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:layout_alignLeft="@id/oa_meeting_start"
|
|
|
- android:layout_below="@id/oa_meeting_start"
|
|
|
- android:layout_marginLeft="18dp"
|
|
|
- android:layout_marginTop="5dp"
|
|
|
- android:text="16:00"
|
|
|
- android:textColor="#000000"
|
|
|
- android:textSize="18sp" />
|
|
|
-
|
|
|
- <TextView
|
|
|
- android:id="@+id/oa_meeting_line"
|
|
|
- android:layout_width="wrap_content"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:layout_alignTop="@+id/oa_meeting_start_date"
|
|
|
- android:layout_marginLeft="5dp"
|
|
|
- android:layout_marginRight="5dp"
|
|
|
- android:layout_toRightOf="@+id/oa_meeting_start_date"
|
|
|
- android:text="—"
|
|
|
- android:textSize="30sp"
|
|
|
- android:visibility="invisible" />
|
|
|
-
|
|
|
- <TextView
|
|
|
- android:id="@+id/oa_meeting_end_date"
|
|
|
- android:layout_width="wrap_content"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:layout_alignTop="@+id/oa_meeting_start_date"
|
|
|
- android:layout_toRightOf="@+id/oa_meeting_line"
|
|
|
- android:text="18:00"
|
|
|
- android:textColor="#000000"
|
|
|
- android:textSize="18sp" />
|
|
|
-
|
|
|
- <TextView
|
|
|
- android:id="@+id/oa_meeting_end"
|
|
|
- android:layout_width="wrap_content"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:layout_above="@id/oa_meeting_end_date"
|
|
|
- android:layout_alignLeft="@+id/oa_meeting_end_date"
|
|
|
- android:layout_marginBottom="5dp"
|
|
|
- android:text="06月13日"
|
|
|
- android:textColor="#666666"
|
|
|
- android:textSize="13sp" />
|
|
|
-
|
|
|
- <TextView
|
|
|
- android:id="@+id/addr"
|
|
|
- android:layout_width="wrap_content"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:layout_below="@id/oa_meeting_start_date"
|
|
|
- android:layout_marginTop="10dp"
|
|
|
- android:drawableLeft="@drawable/ic_meeting_address"
|
|
|
- android:drawablePadding="5dp"
|
|
|
- android:text="@string/meet_position"
|
|
|
- android:textColor="#666666" />
|
|
|
-
|
|
|
- <TextView
|
|
|
- android:id="@+id/addr_tv"
|
|
|
- android:layout_width="wrap_content"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:layout_alignTop="@id/addr"
|
|
|
- android:layout_marginLeft="10dp"
|
|
|
- android:layout_toRightOf="@id/addr"
|
|
|
- android:ellipsize="end"
|
|
|
- android:lines="1"
|
|
|
- android:text="@string/not_edit"
|
|
|
- android:textColor="#666666" />
|
|
|
-
|
|
|
- <TextView
|
|
|
- android:id="@+id/user"
|
|
|
- android:layout_width="wrap_content"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:layout_below="@id/addr_tv"
|
|
|
- android:layout_marginTop="10dp"
|
|
|
- android:drawableLeft="@drawable/ic_metting_people"
|
|
|
- android:drawablePadding="5dp"
|
|
|
- android:text="@string/recorder"
|
|
|
- android:textColor="#666666" />
|
|
|
-
|
|
|
- <TextView
|
|
|
- android:id="@+id/user_tv"
|
|
|
- android:layout_width="wrap_content"
|
|
|
android:layout_height="wrap_content"
|
|
|
- android:layout_alignLeft="@id/addr_tv"
|
|
|
- android:layout_alignTop="@id/user"
|
|
|
- android:textColor="@color/text_hine" />
|
|
|
+ android:orientation="vertical">
|
|
|
|
|
|
- <TextView
|
|
|
- android:id="@+id/tag"
|
|
|
- android:layout_width="wrap_content"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:layout_below="@id/user_tv"
|
|
|
- android:layout_marginTop="10dp"
|
|
|
- android:drawableLeft="@drawable/ic_metting_sub"
|
|
|
- android:drawablePadding="5dp"
|
|
|
- android:text="@string/meet_tag"
|
|
|
- android:textColor="#666666" />
|
|
|
-
|
|
|
- <TextView
|
|
|
- android:id="@+id/tag_tv"
|
|
|
- android:layout_width="wrap_content"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:layout_alignLeft="@id/addr_tv"
|
|
|
- android:layout_alignTop="@id/tag"
|
|
|
- android:text="无"
|
|
|
- android:textColor="#666666" />
|
|
|
-
|
|
|
- <TextView
|
|
|
- android:id="@+id/sub"
|
|
|
- android:layout_width="wrap_content"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:layout_below="@id/tag_tv"
|
|
|
- android:layout_marginTop="10dp"
|
|
|
- android:drawableLeft="@drawable/ic_metting_label"
|
|
|
- android:drawablePadding="5dp"
|
|
|
- android:text="@string/meet_show"
|
|
|
- android:textColor="#666666" />
|
|
|
-
|
|
|
- <TextView
|
|
|
- android:id="@+id/sub_tv"
|
|
|
- android:layout_width="wrap_content"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:layout_alignTop="@id/sub"
|
|
|
- android:layout_marginLeft="10dp"
|
|
|
- android:layout_toRightOf="@id/sub"
|
|
|
- android:ellipsize="end"
|
|
|
- android:lines="1"
|
|
|
- android:text="无"
|
|
|
- android:textColor="#666666" />
|
|
|
-
|
|
|
-
|
|
|
- </RelativeLayout>
|
|
|
-
|
|
|
- <Button
|
|
|
- android:id="@+id/click_btn"
|
|
|
- style="@style/commonButtonStyle"
|
|
|
- android:layout_below="@+id/info"
|
|
|
- android:layout_marginLeft="10dp"
|
|
|
- android:layout_marginRight="10dp"
|
|
|
- android:layout_marginTop="20dp"
|
|
|
- android:text="@string/signin_new" />
|
|
|
-
|
|
|
-
|
|
|
- <LinearLayout
|
|
|
- android:id="@+id/click_ll"
|
|
|
- android:layout_width="wrap_content"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:layout_below="@+id/click_btn"
|
|
|
- android:layout_marginLeft="10dp"
|
|
|
- android:layout_marginTop="10dp"
|
|
|
- android:orientation="horizontal">
|
|
|
-
|
|
|
- <TextView
|
|
|
- android:id="@+id/num_tv"
|
|
|
- android:layout_width="wrap_content"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:text="@string/signin_number" />
|
|
|
-
|
|
|
- <View
|
|
|
- android:layout_width="6dp"
|
|
|
- android:layout_height="1dp" />
|
|
|
-
|
|
|
- <TextView
|
|
|
- android:id="@+id/num_tag"
|
|
|
- android:layout_width="wrap_content"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:text="@string/click_finds"
|
|
|
- android:textColor="#1084D1" />
|
|
|
- </LinearLayout>
|
|
|
-
|
|
|
- <LinearLayout
|
|
|
- android:id="@+id/baidu_ll"
|
|
|
- android:layout_width="wrap_content"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:layout_below="@+id/click_ll"
|
|
|
- android:layout_marginLeft="10dp"
|
|
|
- android:layout_marginTop="10dp"
|
|
|
- android:layout_marginRight="10dp"
|
|
|
- android:orientation="horizontal">
|
|
|
-
|
|
|
- <TextView
|
|
|
- android:id="@+id/location_tv"
|
|
|
- android:layout_width="0dp"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:layout_marginRight="10dp"
|
|
|
- android:layout_weight="1" />
|
|
|
-
|
|
|
- <TextView
|
|
|
- android:id="@+id/location_tag"
|
|
|
- android:layout_width="wrap_content"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:clickable="true"
|
|
|
- android:text="@string/agare"
|
|
|
- android:textColor="#1084D1" />
|
|
|
- </LinearLayout>
|
|
|
+ <LinearLayout
|
|
|
+ android:id="@+id/top"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:background="#F4F4F4"
|
|
|
+ android:gravity="center_vertical"
|
|
|
+ android:orientation="horizontal"
|
|
|
+ android:padding="10dp">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/meet_save"
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginTop="2dp"
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:drawablePadding="@dimen/padding"
|
|
|
+ android:drawableTop="@drawable/oa_save_meet"
|
|
|
+ android:gravity="center"
|
|
|
+ android:text="@string/meet_details"
|
|
|
+ android:textColor="#666666" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/add_task_ll"
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginTop="2dp"
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:drawablePadding="@dimen/padding"
|
|
|
+ android:drawableTop="@drawable/oa_add_task"
|
|
|
+ android:gravity="center"
|
|
|
+ android:text="@string/push_task"
|
|
|
+ android:textColor="#666666" />
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <RelativeLayout
|
|
|
+ android:id="@+id/info"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_below="@id/top"
|
|
|
+ android:background="@color/white"
|
|
|
+ android:paddingBottom="10dp"
|
|
|
+ android:paddingLeft="10dp"
|
|
|
+ android:paddingRight="10dp"
|
|
|
+ android:paddingTop="@dimen/padding">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/name_tv"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:text="标题"
|
|
|
+ android:textColor="#333333"
|
|
|
+ android:textSize="@dimen/text_main"
|
|
|
+ android:textStyle="bold" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/status_tv"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_alignParentRight="true"
|
|
|
+ android:textColor="@color/hintColor"
|
|
|
+ android:textSize="@dimen/text_hine" />
|
|
|
+
|
|
|
+ <View
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="0.1dp"
|
|
|
+ android:layout_below="@id/name_tv"
|
|
|
+ android:layout_marginTop="@dimen/padding"
|
|
|
+ android:background="@color/base_bg" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/oa_meeting_start"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_below="@id/name_tv"
|
|
|
+ android:layout_marginTop="20dp"
|
|
|
+ android:drawableLeft="@drawable/ic_meeting_time"
|
|
|
+ android:drawablePadding="5dp"
|
|
|
+ android:text="06月13日"
|
|
|
+ android:textColor="#666666"
|
|
|
+ android:textSize="13sp" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/oa_meeting_start_date"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_alignLeft="@id/oa_meeting_start"
|
|
|
+ android:layout_below="@id/oa_meeting_start"
|
|
|
+ android:layout_marginLeft="18dp"
|
|
|
+ android:layout_marginTop="5dp"
|
|
|
+ android:text="16:00"
|
|
|
+ android:textColor="#000000"
|
|
|
+ android:textSize="18sp" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/oa_meeting_line"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_alignTop="@+id/oa_meeting_start_date"
|
|
|
+ android:layout_marginLeft="5dp"
|
|
|
+ android:layout_marginRight="5dp"
|
|
|
+ android:layout_toRightOf="@+id/oa_meeting_start_date"
|
|
|
+ android:text="—"
|
|
|
+ android:textSize="30sp"
|
|
|
+ android:visibility="invisible" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/oa_meeting_end_date"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_alignTop="@+id/oa_meeting_start_date"
|
|
|
+ android:layout_toRightOf="@+id/oa_meeting_line"
|
|
|
+ android:text="18:00"
|
|
|
+ android:textColor="#000000"
|
|
|
+ android:textSize="18sp" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/oa_meeting_end"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_above="@id/oa_meeting_end_date"
|
|
|
+ android:layout_alignLeft="@+id/oa_meeting_end_date"
|
|
|
+ android:layout_marginBottom="5dp"
|
|
|
+ android:text="06月13日"
|
|
|
+ android:textColor="#666666"
|
|
|
+ android:textSize="13sp" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/addr"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_below="@id/oa_meeting_start_date"
|
|
|
+ android:layout_marginTop="10dp"
|
|
|
+ android:drawableLeft="@drawable/ic_meeting_address"
|
|
|
+ android:drawablePadding="5dp"
|
|
|
+ android:text="@string/meet_position"
|
|
|
+ android:textColor="#666666" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/addr_tv"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_alignTop="@id/addr"
|
|
|
+ android:layout_marginLeft="10dp"
|
|
|
+ android:layout_toRightOf="@id/addr"
|
|
|
+ android:ellipsize="end"
|
|
|
+ android:lines="1"
|
|
|
+ android:text="@string/not_edit"
|
|
|
+ android:textColor="#666666" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/user"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_below="@id/addr_tv"
|
|
|
+ android:layout_marginTop="10dp"
|
|
|
+ android:drawableLeft="@drawable/ic_metting_people"
|
|
|
+ android:drawablePadding="5dp"
|
|
|
+ android:text="@string/recorder"
|
|
|
+ android:textColor="#666666" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/user_tv"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_alignLeft="@id/addr_tv"
|
|
|
+ android:layout_alignTop="@id/user"
|
|
|
+ android:textColor="@color/text_hine" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/tag"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_below="@id/user_tv"
|
|
|
+ android:layout_marginTop="10dp"
|
|
|
+ android:drawableLeft="@drawable/ic_metting_sub"
|
|
|
+ android:drawablePadding="5dp"
|
|
|
+ android:text="@string/meet_tag"
|
|
|
+ android:textColor="#666666" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/tag_tv"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_alignLeft="@id/addr_tv"
|
|
|
+ android:layout_alignTop="@id/tag"
|
|
|
+ android:text="无"
|
|
|
+ android:textColor="#666666" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/sub"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_below="@id/tag_tv"
|
|
|
+ android:layout_marginTop="10dp"
|
|
|
+ android:drawableLeft="@drawable/ic_metting_label"
|
|
|
+ android:drawablePadding="5dp"
|
|
|
+ android:text="@string/meet_show"
|
|
|
+ android:textColor="#666666" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/sub_tv"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_alignTop="@id/sub"
|
|
|
+ android:layout_marginLeft="10dp"
|
|
|
+ android:layout_toRightOf="@id/sub"
|
|
|
+ android:ellipsize="end"
|
|
|
+ android:lines="1"
|
|
|
+ android:text="无"
|
|
|
+ android:textColor="#666666" />
|
|
|
+
|
|
|
+
|
|
|
+ </RelativeLayout>
|
|
|
+
|
|
|
+ <Button
|
|
|
+ android:id="@+id/click_btn"
|
|
|
+ style="@style/commonButtonStyle"
|
|
|
+ android:layout_below="@+id/info"
|
|
|
+ android:layout_marginLeft="10dp"
|
|
|
+ android:layout_marginRight="10dp"
|
|
|
+ android:layout_marginTop="20dp"
|
|
|
+ android:text="@string/signin_new" />
|
|
|
+
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:id="@+id/click_ll"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_below="@+id/click_btn"
|
|
|
+ android:layout_marginLeft="10dp"
|
|
|
+ android:layout_marginTop="10dp"
|
|
|
+ android:orientation="horizontal">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/num_tv"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:text="@string/signin_number" />
|
|
|
+
|
|
|
+ <View
|
|
|
+ android:layout_width="6dp"
|
|
|
+ android:layout_height="1dp" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/num_tag"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:text="@string/click_finds"
|
|
|
+ android:textColor="#1084D1" />
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:id="@+id/baidu_ll"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_below="@+id/click_ll"
|
|
|
+ android:layout_marginLeft="10dp"
|
|
|
+ android:layout_marginRight="10dp"
|
|
|
+ android:layout_marginTop="10dp"
|
|
|
+ android:orientation="horizontal">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/location_tv"
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginRight="10dp"
|
|
|
+ android:layout_weight="1" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/location_tag"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:clickable="true"
|
|
|
+ android:text="@string/agare"
|
|
|
+ android:textColor="#1084D1" />
|
|
|
+ </LinearLayout>
|
|
|
+ </LinearLayout>
|
|
|
+ </ScrollView>
|
|
|
|
|
|
<TextView
|
|
|
android:id="@+id/end_meet_tv"
|
|
|
@@ -289,4 +303,4 @@
|
|
|
android:layout_alignParentBottom="true"
|
|
|
android:background="@drawable/endmeeting" />
|
|
|
|
|
|
-</RelativeLayout>
|
|
|
+</LinearLayout>
|