295 lines
13 KiB
XML
295 lines
13 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
||
<layout 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">
|
||
|
||
<data>
|
||
|
||
<variable
|
||
name="fragment"
|
||
type="com.navinfo.omqs.ui.fragment.evaluationresult.EvaluationResultFragment" />
|
||
|
||
<variable
|
||
name="viewModel"
|
||
type="com.navinfo.omqs.ui.fragment.evaluationresult.EvaluationResultViewModel" />
|
||
</data>
|
||
|
||
<androidx.constraintlayout.widget.ConstraintLayout
|
||
android:layout_width="@dimen/right_fragment_w"
|
||
android:layout_height="match_parent"
|
||
android:background="@drawable/shape_right_fragment_bg"
|
||
tools:context=".ui.fragment.evaluationresult.EvaluationResultFragment">
|
||
|
||
<TextView
|
||
android:id="@+id/evaluation_bar"
|
||
android:layout_width="wrap_content"
|
||
android:layout_height="wrap_content"
|
||
android:layout_marginLeft="12dp"
|
||
android:layout_marginTop="14dp"
|
||
android:drawableLeft="@drawable/selector_btn_back_xml"
|
||
android:text="Mark"
|
||
android:textColor="@color/default_blue_text_color"
|
||
android:textSize="16sp"
|
||
app:layout_constraintLeft_toLeftOf="parent"
|
||
app:layout_constraintTop_toTopOf="parent" />
|
||
|
||
<ImageButton
|
||
android:id="@+id/evaluation_bar_save"
|
||
android:layout_width="40dp"
|
||
android:layout_height="40dp"
|
||
android:layout_marginTop="9dp"
|
||
android:layout_marginRight="14dp"
|
||
android:background="@drawable/ripple_fragment_save_botton_bg"
|
||
android:src="@drawable/icon_save"
|
||
app:layout_constraintRight_toRightOf="parent"
|
||
app:layout_constraintTop_toTopOf="parent" />
|
||
|
||
|
||
<ImageButton
|
||
android:id="@+id/evaluation_bar_cancel"
|
||
android:layout_width="40dp"
|
||
android:layout_height="40dp"
|
||
android:layout_marginRight="10dp"
|
||
android:background="@color/transparent"
|
||
android:src="@drawable/icon_fragment_close"
|
||
android:visibility="gone"
|
||
app:layout_constraintRight_toLeftOf="@id/evaluation_bar_save"
|
||
app:layout_constraintTop_toTopOf="@id/evaluation_bar_save" />
|
||
|
||
|
||
<ImageButton
|
||
android:id="@+id/evaluation_bar_delete"
|
||
android:layout_width="40dp"
|
||
android:layout_height="40dp"
|
||
android:layout_centerInParent="true"
|
||
android:layout_marginRight="5dp"
|
||
android:background="@color/transparent"
|
||
android:src="@drawable/icon_delete"
|
||
app:layout_constraintRight_toLeftOf="@id/evaluation_bar_cancel"
|
||
app:layout_constraintTop_toTopOf="@id/evaluation_bar_save" />
|
||
|
||
<androidx.core.widget.NestedScrollView
|
||
android:layout_width="0dp"
|
||
android:layout_height="0dp"
|
||
android:layout_marginTop="6dp"
|
||
android:paddingLeft="11dp"
|
||
android:paddingTop="6dp"
|
||
android:paddingRight="9dp"
|
||
android:paddingBottom="6dp"
|
||
app:layout_constraintBottom_toTopOf="@id/evaluation_camera"
|
||
app:layout_constraintLeft_toLeftOf="parent"
|
||
app:layout_constraintRight_toRightOf="parent"
|
||
app:layout_constraintTop_toBottomOf="@id/evaluation_bar_save">
|
||
|
||
<LinearLayout
|
||
android:layout_width="match_parent"
|
||
android:layout_height="match_parent"
|
||
android:layout_marginBottom="7dp"
|
||
android:orientation="vertical">
|
||
|
||
<LinearLayout
|
||
android:layout_width="match_parent"
|
||
android:layout_height="wrap_content"
|
||
android:layout_marginBottom="7dp"
|
||
android:orientation="horizontal">
|
||
|
||
<TextView
|
||
style="@style/evaluation_fragment_title_text_style"
|
||
android:text="要素分类" />
|
||
|
||
<TextView
|
||
android:id="@+id/evaluation_class_type"
|
||
style="@style/evaluation_fragment_text_style"
|
||
android:onClick="@{fragment::onClick}"
|
||
android:text="@{viewModel.liveDataQsRecordBean.classType}" />
|
||
|
||
</LinearLayout>
|
||
|
||
<LinearLayout
|
||
android:layout_width="match_parent"
|
||
android:layout_height="wrap_content"
|
||
android:layout_marginBottom="7dp"
|
||
android:orientation="horizontal">
|
||
|
||
<TextView
|
||
style="@style/evaluation_fragment_title_text_style"
|
||
android:text="问题类型" />
|
||
|
||
<TextView
|
||
android:id="@+id/evaluation_problem_type"
|
||
style="@style/evaluation_fragment_text_style"
|
||
android:onClick="@{fragment::onClick}"
|
||
android:text="@{viewModel.liveDataQsRecordBean.problemType}" />
|
||
|
||
</LinearLayout>
|
||
|
||
<LinearLayout
|
||
android:layout_width="match_parent"
|
||
android:layout_height="wrap_content"
|
||
android:layout_marginBottom="7dp"
|
||
android:orientation="horizontal">
|
||
|
||
<TextView
|
||
style="@style/evaluation_fragment_title_text_style"
|
||
android:text="问题现象" />
|
||
|
||
<TextView
|
||
android:id="@+id/evaluation_phenomenon"
|
||
style="@style/evaluation_fragment_text_style"
|
||
android:onClick="@{fragment::onClick}"
|
||
android:text="@{viewModel.liveDataQsRecordBean.phenomenon}" />
|
||
|
||
</LinearLayout>
|
||
|
||
<LinearLayout
|
||
android:layout_width="match_parent"
|
||
android:layout_height="wrap_content"
|
||
android:layout_marginBottom="7dp"
|
||
android:orientation="horizontal">
|
||
|
||
<TextView
|
||
style="@style/evaluation_fragment_title_text_style"
|
||
android:text="问题环节" />
|
||
|
||
<TextView
|
||
android:id="@+id/evaluation_link"
|
||
style="@style/evaluation_fragment_text_style"
|
||
android:onClick="@{fragment::onClick}"
|
||
android:text="@{viewModel.liveDataQsRecordBean.problemLink}" />
|
||
|
||
</LinearLayout>
|
||
|
||
<LinearLayout
|
||
android:layout_width="match_parent"
|
||
android:layout_height="wrap_content"
|
||
android:layout_marginBottom="7dp"
|
||
android:orientation="horizontal">
|
||
|
||
<TextView
|
||
style="@style/evaluation_fragment_title_text_style"
|
||
android:text="问题原因" />
|
||
|
||
<TextView
|
||
android:id="@+id/evaluation_cause"
|
||
style="@style/evaluation_fragment_text_style"
|
||
android:onClick="@{fragment::onClick}"
|
||
android:text="@{viewModel.liveDataQsRecordBean.cause}" />
|
||
|
||
|
||
</LinearLayout>
|
||
|
||
<LinearLayout
|
||
android:layout_width="match_parent"
|
||
android:layout_height="match_parent"
|
||
android:orientation="horizontal">
|
||
|
||
<TextView
|
||
style="@style/evaluation_fragment_title_text_style"
|
||
android:layout_gravity="top"
|
||
android:layout_marginTop="3dp"
|
||
android:text="问题描述" />
|
||
|
||
<com.navinfo.omqs.ui.widget.MyEditeText
|
||
android:layout_width="match_parent"
|
||
android:layout_height="wrap_content"
|
||
android:background="@drawable/shape_rect_white_2dp_bg"
|
||
android:elevation="2dp"
|
||
android:gravity="start"
|
||
android:hint="请输入备注信息"
|
||
android:inputType="textMultiLine"
|
||
android:lines="3"
|
||
android:maxLines="3"
|
||
android:paddingLeft="12dp"
|
||
android:paddingTop="2dp"
|
||
android:paddingBottom="2dp"
|
||
android:text="@={viewModel.liveDataQsRecordBean.description}"
|
||
android:textSize="12sp" />
|
||
|
||
</LinearLayout>
|
||
|
||
<View
|
||
android:layout_width="match_parent"
|
||
android:layout_height="1dp"
|
||
android:layout_marginLeft="8dp"
|
||
android:layout_marginTop="26dp"
|
||
android:layout_marginRight="8dp"
|
||
android:layout_marginBottom="20dp"
|
||
android:background="#D6DBF0" />
|
||
|
||
<TextView
|
||
android:layout_width="wrap_content"
|
||
android:layout_height="wrap_content"
|
||
android:layout_marginBottom="8dp"
|
||
android:text="多媒体"
|
||
android:textColor="@color/default_blue_text_color"
|
||
android:textSize="16sp" />
|
||
|
||
<!--
|
||
这种效果也好实现,主要的关键点是 Android:clipChildren=”false” 这个属性。
|
||
1.配置ViewPager 和其父布局的 android:clipChildren属性为”false”.
|
||
(android:clipChildren表示是否限制子View在其范围内,默认为true. 代码设置setClipChildren(false))
|
||
因为如果clipChildren属性设置为true,就表明我们要将children给clip掉,就是说对于子元素来说,超出当前view的部分都会被切掉,那我们在这里把它设置成false,就表明超出view的部分,不要切掉,依然显示。
|
||
注意:setClipChildren(false)在3.0以上版本中,开启了硬件加速后将不能正常工作,所以需要将其设置为软件加速。设置软硬件加速使用 setLayerType(View.LAYER_TYPE_SOFTWARE, null); 也可以在布局文件中添加 android:layerType=”software”
|
||
|
||
-->
|
||
<LinearLayout
|
||
android:layout_width="match_parent"
|
||
android:layout_height="wrap_content"
|
||
android:gravity="center"
|
||
android:orientation="horizontal">
|
||
|
||
<ImageView
|
||
android:id="@+id/evaluation_picture_left"
|
||
android:layout_width="24dp"
|
||
android:layout_height="24dp"
|
||
android:layout_marginRight="4dp"
|
||
android:background="@drawable/icon_picture_left"
|
||
android:padding="5dp" />
|
||
|
||
<androidx.viewpager2.widget.ViewPager2
|
||
android:id="@+id/evaluation_picture_viewpager"
|
||
android:layout_width="wrap_content"
|
||
android:layout_height="50dp"
|
||
android:layout_weight="1"
|
||
android:clipChildren="false" />
|
||
|
||
<ImageView
|
||
android:id="@+id/evaluation_picture_right"
|
||
android:layout_width="24dp"
|
||
android:layout_height="24dp"
|
||
android:layout_marginLeft="4dp"
|
||
android:background="@drawable/icon_picture_right"
|
||
android:padding="5dp" />
|
||
</LinearLayout>
|
||
|
||
<androidx.recyclerview.widget.RecyclerView
|
||
android:id="@+id/evaluation_voice_recyclerview"
|
||
android:layout_width="match_parent"
|
||
android:layout_height="120dp" />
|
||
|
||
</LinearLayout>
|
||
</androidx.core.widget.NestedScrollView>
|
||
|
||
<ImageView
|
||
android:id="@+id/evaluation_camera"
|
||
android:layout_width="0dp"
|
||
android:layout_height="wrap_content"
|
||
android:padding="10dp"
|
||
android:src="@drawable/baseline_camera_alt_24"
|
||
app:layout_constraintBottom_toBottomOf="parent"
|
||
app:layout_constraintHorizontal_weight="1"
|
||
app:layout_constraintLeft_toLeftOf="parent"
|
||
app:layout_constraintRight_toLeftOf="@id/evaluation_voice" />
|
||
|
||
<ImageView
|
||
android:id="@+id/evaluation_voice"
|
||
android:layout_width="0dp"
|
||
android:layout_height="wrap_content"
|
||
android:padding="10dp"
|
||
android:src="@drawable/baseline_keyboard_voice_24"
|
||
app:layout_constraintBottom_toBottomOf="parent"
|
||
app:layout_constraintHorizontal_weight="1"
|
||
app:layout_constraintLeft_toRightOf="@id/evaluation_camera"
|
||
app:layout_constraintRight_toRightOf="parent" />
|
||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||
</layout> |