user_feedback.xml 2.38 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:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="vertical">

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

            <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:layout_centerVertical="true"
                android:layout_marginLeft="@dimen/_30px"
                android:background="@null"
                android:hint="有什么好的建议嘛"
                android:imeOptions="flagNoExtractUi"
                android:textColor="#000000"
                android:textColorHint="@color/color_list_bg"
                android:textSize="@dimen/text_size_15" />

            <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_alignParentBottom="true"
                android:layout_centerHorizontal="true"
                android:layout_gravity="center"
                android:layout_marginBottom="15dp"
                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>