jimu-decompiled/resources/res/layout/activity_feedback.xml
2025-05-13 19:24:51 +02:00

127 lines
5.5 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto"
android:background="@color/bg_FAFAFC"
android:layout_width="match_parent"
android:layout_height="match_parent">
<com.ubt.jimu.widgets.NavigationBarView
android:id="@+id/nbv_bar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:nbv_mode="left"
app:nbv_title="@string/setting_feedback"/>
<LinearLayout
android:gravity="center"
android:orientation="horizontal"
android:id="@+id/xl_selected"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/dp70"
android:layout_below="@+id/nbv_bar"
android:layout_centerHorizontal="true">
<TextView
android:textColor="@color/bg_white"
android:id="@+id/tv_suggests"
android:text="@string/setting_suggests"
style="@style/tv_feedback_style"/>
<TextView
android:textSize="@dimen/dp25"
android:gravity="center"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="@dimen/dp15"
android:layout_marginRight="@dimen/dp15"
android:text="@string/setting_or"/>
<TextView
android:textColor="@color/bg_596F80"
android:id="@+id/tv_service"
android:background="@drawable/slt_feed_product"
android:text="@string/setting_sale"
style="@style/tv_feedback_style"/>
</LinearLayout>
<RelativeLayout
android:id="@+id/card_email"
style="@style/setting_feedback_email">
<LinearLayout
android:gravity="center_vertical"
android:orientation="horizontal"
android:id="@+id/xl_email"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerVertical="true">
<TextView
android:textSize="@dimen/dp25"
android:textColor="@color/bg_596F80"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="@dimen/dp40"
android:text="@string/setting_email"/>
<EditText
android:textSize="@dimen/dp25"
android:textColor="@color/bg_96A6B4"
android:textColorHint="@color/txt_98A5B6"
android:id="@+id/et_email"
android:background="@color/translucent"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="@dimen/dp70"
android:layout_marginRight="@dimen/dp40"
android:hint="@string/setting_input_email"
android:singleLine="true"
android:maxLength="30"
android:inputType="text"
android:imeOptions="flagNoFullscreen|actionNext"/>
</LinearLayout>
</RelativeLayout>
<RelativeLayout
android:id="@+id/card_feedback"
android:layout_width="@dimen/dp700w"
android:layout_height="@dimen/dp208"
android:layout_marginTop="@dimen/dp20"
android:layout_below="@+id/card_email"
android:layout_centerHorizontal="true">
<LinearLayout
android:orientation="horizontal"
android:id="@+id/xl_feedback"
android:background="@drawable/bg_community_diy"
android:paddingTop="@dimen/dp20"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_centerHorizontal="true">
<TextView
android:textSize="@dimen/dp25"
android:textColor="@color/bg_596F80"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="@dimen/dp40"
android:layout_marginTop="@dimen/dp5"
android:text="@string/setting_feedback"/>
<EditText
android:textSize="@dimen/dp25"
android:textColor="@color/bg_596F80"
android:textColorHint="@color/txt_98A5B6"
android:gravity="top"
android:id="@+id/et_feedback"
android:background="@color/translucent"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginLeft="@dimen/dp70"
android:layout_marginTop="@dimen/dp5"
android:layout_marginRight="@dimen/dp40"
android:hint="@string/setting_input_something"
android:maxLength="500"
android:imeOptions="flagNoFullscreen|actionSend"/>
</LinearLayout>
</RelativeLayout>
<FrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@+id/card_feedback">
<com.ubtech.view.widget.UButton
android:layout_gravity="center"
android:id="@+id/xl_send"
android:text="@string/setting_send"
android:layout_centerHorizontal="true"
style="@style/btn_blue_middle_style"/>
</FrameLayout>
</RelativeLayout>