71 lines
3.0 KiB
XML
71 lines
3.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.constraintlayout.widget.ConstraintLayout 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="@dimen/fragment_phenomenon_width"
|
|
android:layout_height="match_parent"
|
|
android:background="@drawable/shape_middle_fragment_bg"
|
|
tools:context="com.navinfo.omqs.ui.fragment.evaluationresult.PhenomenonFragment">
|
|
|
|
<!-- <ImageView-->
|
|
<!-- android:id="@+id/phenomenon_drawer"-->
|
|
<!-- android:layout_width="wrap_content"-->
|
|
<!-- android:layout_height="wrap_content"-->
|
|
<!-- android:background="@drawable/progress_bg"-->
|
|
<!-- android:paddingLeft="10dp"-->
|
|
<!-- android:paddingTop="30dp"-->
|
|
<!-- android:paddingRight="10dp"-->
|
|
<!-- android:paddingBottom="30dp"-->
|
|
<!-- android:src="@drawable/btn_back_xml" />-->
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:id="@+id/phenomenon_middle_recyclerview"
|
|
android:layout_width="0dp"
|
|
android:layout_height="35dp"
|
|
app:layout_constraintLeft_toLeftOf="parent"
|
|
app:layout_constraintRight_toLeftOf="@id/phenomenon_right_recyclerview"
|
|
app:layout_constraintTop_toTopOf="parent" />
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:id="@+id/phenomenon_left_recyclerview"
|
|
android:layout_width="0dp"
|
|
android:layout_height="0dp"
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
app:layout_constraintLeft_toLeftOf="parent"
|
|
app:layout_constraintRight_toLeftOf="@id/phenomenon_right_recyclerview"
|
|
app:layout_constraintTop_toBottomOf="@id/phenomenon_middle_recyclerview" />
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:id="@+id/phenomenon_right_recyclerview"
|
|
android:layout_width="0dp"
|
|
android:layout_height="0dp"
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
app:layout_constraintLeft_toRightOf="@id/phenomenon_left_recyclerview"
|
|
app:layout_constraintRight_toRightOf="parent" />
|
|
|
|
<!-- <LinearLayout-->
|
|
<!-- android:id="@+id/group"-->
|
|
<!-- android:layout_width="match_parent"-->
|
|
<!-- android:layout_height="match_parent"-->
|
|
<!-- android:orientation="vertical">-->
|
|
|
|
<!-- <LinearLayout-->
|
|
<!-- android:layout_width="match_parent"-->
|
|
<!-- android:layout_height="match_parent"-->
|
|
<!-- android:orientation="horizontal">-->
|
|
|
|
<!-- <RelativeLayout-->
|
|
<!-- android:layout_width="0dp"-->
|
|
<!-- android:layout_height="match_parent"-->
|
|
<!-- android:layout_weight="2">-->
|
|
|
|
<!-- -->
|
|
|
|
<!-- </RelativeLayout>-->
|
|
|
|
|
|
<!-- -->
|
|
<!-- </LinearLayout>-->
|
|
<!-- </LinearLayout>-->
|
|
</androidx.constraintlayout.widget.ConstraintLayout> |