63 lines
2.4 KiB
XML
63 lines
2.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:gravity="right|center_vertical"
|
|
android:orientation="horizontal"
|
|
android:paddingTop="@dimen/fragment_margin_top"
|
|
android:paddingLeft="@dimen/fragment_margin_left"
|
|
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" />
|
|
|
|
<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_weight="2"
|
|
android:layout_height="match_parent">
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:id="@+id/phenomenon_middle_recyclerview"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="@color/white" />
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:layout_below="@id/phenomenon_middle_recyclerview"
|
|
android:id="@+id/phenomenon_left_recyclerview"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="@color/white" />
|
|
|
|
</RelativeLayout>
|
|
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:id="@+id/phenomenon_right_recyclerview"
|
|
android:layout_width="0dp"
|
|
android:layout_height="match_parent"
|
|
android:layout_weight="3"
|
|
android:background="@color/white" />
|
|
</LinearLayout>
|
|
</LinearLayout>
|
|
</LinearLayout> |