119 lines
4.7 KiB
XML
119 lines
4.7 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"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical"
|
|
tools:context=".activitys.issue.IssueAppraisalActivity">
|
|
|
|
<android.support.v7.widget.CardView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_margin="8dp"
|
|
app:cardCornerRadius="5dp"
|
|
app:cardPreventCornerOverlap="true"
|
|
app:cardUseCompatPadding="false">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:padding="5dp">
|
|
|
|
<ImageView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:background="@drawable/ic_start_hint" />
|
|
|
|
<RadioGroup
|
|
android:id="@+id/rg_appraise"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical">
|
|
|
|
<RadioButton
|
|
android:id="@+id/rb_diss_1"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_margin="5dp"
|
|
android:button="@drawable/sel_radio_cir"
|
|
android:padding="5dp"
|
|
android:text="非常不满意" />
|
|
|
|
<RadioButton
|
|
android:id="@+id/rb_diss_2"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_margin="5dp"
|
|
android:button="@drawable/sel_radio_cir"
|
|
android:padding="5dp"
|
|
android:text="不满意" />
|
|
|
|
<RadioButton
|
|
android:id="@+id/rb_so"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_margin="5dp"
|
|
android:button="@drawable/sel_radio_cir"
|
|
android:padding="5dp"
|
|
android:text="一般" />
|
|
|
|
<RadioButton
|
|
android:id="@+id/rb_ple_1"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_margin="5dp"
|
|
android:button="@drawable/sel_radio_cir"
|
|
android:checked="true"
|
|
android:padding="5dp"
|
|
android:text="满意" />
|
|
|
|
<RadioButton
|
|
android:id="@+id/rb_ple_2"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_margin="5dp"
|
|
android:button="@drawable/sel_radio_cir"
|
|
android:padding="5dp"
|
|
android:text="非常满意" />
|
|
</RadioGroup>
|
|
|
|
<EditText
|
|
android:id="@+id/et_remark"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_margin="5dp"
|
|
android:layout_marginTop="5dp"
|
|
android:background="@drawable/shp_rectangle_gray"
|
|
android:gravity="left"
|
|
android:hint="请输入评价信息"
|
|
android:minLines="5"
|
|
android:padding="8dp"
|
|
android:textSize="15sp"
|
|
tools:text="" />
|
|
</LinearLayout>
|
|
</android.support.v7.widget.CardView>
|
|
|
|
<android.support.v7.widget.CardView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentBottom="true"
|
|
android:layout_marginLeft="15dp"
|
|
android:layout_marginTop="10dp"
|
|
android:layout_marginRight="15dp"
|
|
android:layout_marginBottom="10dp"
|
|
app:cardCornerRadius="10dp"
|
|
app:cardPreventCornerOverlap="true"
|
|
app:cardUseCompatPadding="false">
|
|
|
|
<Button
|
|
android:id="@+id/btn_submit"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="@drawable/sel_btn_submit"
|
|
android:text="提交"
|
|
android:textColor="@color/white"
|
|
android:textSize="18sp" />
|
|
</android.support.v7.widget.CardView>
|
|
</RelativeLayout> |