user_feedback.xml 2.11 KB
<?xml version="1.0" encoding="utf-8"?>
<layout xmlns:android="http://schemas.android.com/apk/res/android"
    >



<RelativeLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent">

<LinearLayout
    android:orientation="vertical" android:layout_width="match_parent"
    android:layout_height="wrap_content">

    <include layout="@layout/user_toolbar_title"
        android:id="@+id/feedbackIncludeLayout"/>

    <include layout="@layout/user_divider_head_line" />

    <View
        android:layout_width="match_parent"
        android:layout_height="@dimen/_20px" />

    <EditText
        android:id="@+id/feedback_textView"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:paddingTop="@dimen/_20px"
        android:paddingBottom="@dimen/_20px"
        android:layout_centerVertical="true"
        android:layout_marginLeft="@dimen/_30px"
        android:background="@null"
        android:hint="有什么好的建议嘛"
        android:textColor="#000000"
        android:textColorHint="@color/color_list_bg"
        android:textSize="@dimen/text_size_15"
        android:imeOptions="flagNoExtractUi" />

    <View
        android:layout_width="match_parent"
        android:layout_height="@dimen/_100px" />

    <Button
        android:id="@+id/feedback"
        style="@style/LoginButtonStyle"
        android:layout_width="match_parent"
        android:layout_height="35dp"
        android:layout_gravity="center"
        android:layout_centerHorizontal="true"
        android:layout_marginBottom="15dp"
        android:layout_alignParentBottom="true"
        android:background="@drawable/user_btn_login"
        android:gravity="center"
        android:onClick="onClick"
        android:text="提交" />

</LinearLayout>

    <ImageView
        android:id="@+id/back_selector"
        android:layout_width="30dp"
        android:layout_height="30dp"
        android:layout_marginLeft="@dimen/_10px"
        android:layout_marginTop="@dimen/_20px"
        android:onClick="onClick"
        android:src="@drawable/btn_return" />

    </RelativeLayout>

    </layout>