123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- <?xml version="1.0" encoding="utf-8"?>
- <androidx.core.widget.NestedScrollView xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:app="http://schemas.android.com/apk/res-auto"
- android:id="@+id/root"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@color/white_ffffff">
- <androidx.appcompat.widget.LinearLayoutCompat
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="vertical"
- android:paddingBottom="20dp">
- <RelativeLayout
- android:layout_width="match_parent"
- android:layout_height="48dp"
- android:background="@color/white_ffffff">
- <ImageView
- android:layout_width="wrap_content"
- android:layout_height="match_parent"
- android:layout_marginLeft="16dp"
- android:src="@drawable/ic_round_arrow_back_24" />
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="match_parent"
- android:layout_centerInParent="true"
- android:gravity="center"
- android:text="空间详情"
- android:textColor="@color/black_272727"
- android:textSize="20sp" />
- </RelativeLayout>
- <com.sybotan.android.demo.view.ListItemView
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- app:LeftText="物业分区"
- app:Type="4" />
- <com.sybotan.android.demo.view.ListItemView
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- app:LeftText="静态属性信息"
- app:Type="4" />
- <com.sybotan.android.demo.view.ListItemView
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- app:LeftText="空间功能类型"
- app:Type="0" />
- <include layout="@layout/static_info" />
- <com.sybotan.android.demo.view.ListItemView
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- app:LeftText="对象关系"
- app:Type="4" />
- <ExpandableListView
- android:id="@+id/expandLvRelation"
- android:layout_width="match_parent"
- android:layout_height="wrap_content" />
- <TextView
- android:id="@+id/btnSubmit"
- android:layout_width="match_parent"
- android:layout_height="40dp"
- android:layout_gravity="center"
- android:layout_marginLeft="16dp"
- android:layout_marginTop="20dp"
- android:layout_marginRight="16dp"
- android:background="@drawable/shape_rectangle_green_3"
- android:gravity="center"
- android:text="提交"
- android:textColor="@color/white_ffffff"
- android:textSize="17dp" />
- </androidx.appcompat.widget.LinearLayoutCompat>
- </androidx.core.widget.NestedScrollView>
|