12345678910111213141516171819202122232425262728293031323334353637383940 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:app="http://schemas.android.com/apk/res-auto"
- android:orientation="vertical"
- android:layout_width="match_parent"
- android:layout_height="match_parent">
- <android.support.design.widget.AppBarLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content">
- <com.shuishuo.app.common.views.BaseToolbar
- android:id="@+id/toolbar"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- style="@style/fullToolbarStyle"/>
- </android.support.design.widget.AppBarLayout>
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:padding="16dp"
- android:orientation="vertical">
- <EditText
- android:id="@+id/mine_feedback_ET"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:hint="请输入要反馈的内容" />
- <ImageView
- android:id="@+id/mine_feedback_image"
- android:layout_width="60dp"
- android:layout_height="60dp"
- android:adjustViewBounds="true"
- android:scaleType="centerCrop"
- app:srcCompat="@drawable/chat_01_pressed" />
- </LinearLayout>
- </LinearLayout>
|