|
|
@@ -0,0 +1,101 @@
|
|
|
+<?xml version="1.0" encoding="utf-8"?>
|
|
|
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:orientation="vertical"
|
|
|
+ android:background="@color/bg_gray">
|
|
|
+
|
|
|
+ <include
|
|
|
+ layout="@layout/title"/>
|
|
|
+
|
|
|
+ <ScrollView
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:scrollbars="none">
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:orientation="vertical"
|
|
|
+ android:padding="@dimen/common_margin_10">
|
|
|
+
|
|
|
+ <RelativeLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:background="@drawable/x_shap_shadow_bg_rectgangle_white"
|
|
|
+ android:padding="@dimen/common_margin_10">
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/feedbook_notice_top_tv"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:text="@string/feedback_notice_hellow"
|
|
|
+ style="@style/txt_style_15_black"/>
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/feedbook_notice_end_tv"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:text="@string/feedback_notice_end"
|
|
|
+ style="@style/txt_style_15_black"
|
|
|
+ android:layout_below="@+id/feedbook_notice_top_tv"
|
|
|
+ android:layout_alignParentRight="true"
|
|
|
+ android:layout_marginTop="@dimen/content_padding_15"/>
|
|
|
+
|
|
|
+ <android.support.design.widget.TextInputEditText
|
|
|
+ android:id="@+id/feedbook_et"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:minHeight="@dimen/view_size_130"
|
|
|
+ android:cursorVisible="false"
|
|
|
+ android:layout_below="@+id/feedbook_notice_end_tv"
|
|
|
+ android:layout_marginTop="@dimen/content_padding"
|
|
|
+ android:hint="@string/feedback_notice_input_advice"
|
|
|
+ android:gravity="top"
|
|
|
+ android:text=""
|
|
|
+ style="@style/edt_style"
|
|
|
+ android:layout_marginBottom="@dimen/content_padding_20"/>
|
|
|
+ <LinearLayout
|
|
|
+ android:id="@+id/feedbook_email_layout"
|
|
|
+ android:layout_below="@+id/feedbook_et"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:orientation="horizontal"
|
|
|
+ android:gravity="center_vertical">
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ style="@style/txt_style_15_black"
|
|
|
+ android:text="@string/contact_qq_email"
|
|
|
+ android:layout_gravity="center_vertical"/>
|
|
|
+
|
|
|
+ <android.support.design.widget.TextInputEditText
|
|
|
+ android:id="@+id/feedbook_email_et"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:cursorVisible="false"
|
|
|
+ android:hint="@string/feedback_notice_input_email_address"
|
|
|
+ android:gravity="top"
|
|
|
+ android:text=""
|
|
|
+ android:lines="2"
|
|
|
+ android:inputType="textEmailAddress"
|
|
|
+ style="@style/edt_style"
|
|
|
+ android:layout_gravity="center_vertical"/>
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ style="@style/nomal_txt_style"
|
|
|
+ android:text="@string/input_notice_feedback"
|
|
|
+ android:layout_below="@+id/feedbook_email_layout"
|
|
|
+ android:layout_marginBottom="@dimen/content_padding_10"
|
|
|
+ android:layout_marginTop="@dimen/content_padding_10"/>
|
|
|
+ </RelativeLayout>
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/tv_submit"
|
|
|
+ style="@style/style_button_no_margin"
|
|
|
+ android:layout_marginTop="@dimen/view_size_30"
|
|
|
+ android:text="提交建议" />
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+ </ScrollView>
|
|
|
+
|
|
|
+</LinearLayout>
|