|
@@ -0,0 +1,426 @@
|
|
|
+<?xml version="1.0" encoding="utf-8"?>
|
|
|
+<RelativeLayout 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="match_parent"
|
|
|
+ android:orientation="vertical"
|
|
|
+ android:background="#f8f8f8"
|
|
|
+ android:layout_height="wrap_content">
|
|
|
+
|
|
|
+ <View
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:id="@+id/rhzf_top_bg"
|
|
|
+ android:background="@drawable/bj_blue"
|
|
|
+ android:layout_height="232dp"/>
|
|
|
+
|
|
|
+ <com.zkjc.common.view.CommonTitleBarV3
|
|
|
+ android:id="@+id/title_bar"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginTop="25dp" />
|
|
|
+
|
|
|
+ <androidx.coordinatorlayout.widget.CoordinatorLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:id="@+id/layout_rwzx"
|
|
|
+ android:layout_below="@id/title_bar"
|
|
|
+ android:layout_height="match_parent">
|
|
|
+
|
|
|
+ <com.google.android.material.appbar.AppBarLayout
|
|
|
+ android:orientation="vertical"
|
|
|
+ android:id="@+id/rhzf_detail_appbar"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ app:elevation="0dp"
|
|
|
+ app:layout_behavior="com.yuruiyin.appbarlayoutbehavior.AppBarLayoutBehavior"
|
|
|
+ android:background="@color/transparent"
|
|
|
+ android:layout_height="wrap_content">
|
|
|
+ <com.google.android.material.appbar.CollapsingToolbarLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ app:layout_scrollFlags="scroll|exitUntilCollapsed">
|
|
|
+
|
|
|
+ <androidx.appcompat.widget.Toolbar
|
|
|
+ android:id="@+id/toolbar"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="44dp"/>
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:orientation="vertical"
|
|
|
+ android:layout_marginLeft="12dp"
|
|
|
+ android:layout_marginRight="12dp"
|
|
|
+ android:background="@drawable/white_bg"
|
|
|
+ android:layout_marginTop="12dp"
|
|
|
+ android:layout_height="wrap_content">
|
|
|
+
|
|
|
+ <RelativeLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:id="@+id/layout_fw"
|
|
|
+ android:layout_height="wrap_content">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:text="实有房屋"
|
|
|
+ android:layout_marginLeft="12dp"
|
|
|
+ android:layout_marginTop="16dp"
|
|
|
+ android:layout_marginBottom="16dp"
|
|
|
+ android:textColor="#ff111111"
|
|
|
+ android:textSize="16sp"
|
|
|
+ />
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:layout_width="16dp"
|
|
|
+ android:background="@drawable/btn_edit_color"
|
|
|
+ android:layout_alignParentRight="true"
|
|
|
+ android:layout_centerVertical="true"
|
|
|
+ android:layout_marginRight="12dp"
|
|
|
+ android:layout_height="16dp"/>
|
|
|
+
|
|
|
+ </RelativeLayout>
|
|
|
+
|
|
|
+ <View
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:background="#e7e7e7"
|
|
|
+ android:layout_marginLeft="12dp"
|
|
|
+ android:layout_marginRight="12dp"
|
|
|
+ android:layout_height="1dp"/>
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:orientation="horizontal"
|
|
|
+ android:layout_marginTop="12dp"
|
|
|
+ android:layout_marginBottom="11dp"
|
|
|
+ android:layout_height="wrap_content">
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:layout_width="48dp"
|
|
|
+ android:layout_marginLeft="12dp"
|
|
|
+ android:id="@+id/rhzf_detail_iv_zp"
|
|
|
+ android:background="@drawable/icon_house_color"
|
|
|
+ android:scaleType="centerCrop"
|
|
|
+ android:layout_height="48dp"/>
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:orientation="vertical"
|
|
|
+ android:layout_marginRight="12dp"
|
|
|
+ android:layout_marginLeft="12dp"
|
|
|
+ android:layout_height="wrap_content">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/rhzf_detail_tv_address"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:text="吉林省长春市朝阳区飞跃街道学苑街众诚·一品东南1栋 1单元101室"
|
|
|
+ android:textColor="#ff111111"
|
|
|
+ android:lineSpacingExtra="3dp"
|
|
|
+ android:textSize="14sp" />
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:orientation="horizontal"
|
|
|
+ android:layout_marginTop="8dp"
|
|
|
+ android:layout_height="wrap_content">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:text="房屋特点"
|
|
|
+ android:textColor="#ff999999"
|
|
|
+ android:textSize="12sp"
|
|
|
+ />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:id="@+id/rhzf_detail_tv_fwtd"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginLeft="4dp"
|
|
|
+ android:text="单元公寓楼|住宅|居民住宅|出租"
|
|
|
+ android:textColor="#ff111111"
|
|
|
+ android:textSize="12sp"
|
|
|
+ />
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:orientation="horizontal"
|
|
|
+ android:layout_marginTop="8dp"
|
|
|
+ android:layout_height="wrap_content">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:text="户内面积"
|
|
|
+ android:textColor="#ff999999"
|
|
|
+ android:textSize="12sp"
|
|
|
+ />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:id="@+id/rhzf_detail_tv_mj"
|
|
|
+ android:layout_marginLeft="4dp"
|
|
|
+ android:text="86㎡"
|
|
|
+ android:textColor="#ff111111"
|
|
|
+ android:textSize="12sp"
|
|
|
+ />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:text="|户内间数"
|
|
|
+ android:layout_marginLeft="4dp"
|
|
|
+ android:textColor="#ff999999"
|
|
|
+ android:textSize="12sp"
|
|
|
+ />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:id="@+id/rhzf_detail_tv_count"
|
|
|
+ android:layout_marginLeft="4dp"
|
|
|
+ android:text="3"
|
|
|
+ android:textColor="#ff111111"
|
|
|
+ android:textSize="12sp"
|
|
|
+ />
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:orientation="horizontal"
|
|
|
+ android:id="@+id/rhzf_detail_layout_tsqk"
|
|
|
+ android:layout_marginTop="8dp"
|
|
|
+ android:layout_height="wrap_content">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:text="特殊情况说明"
|
|
|
+ android:textColor="#ff999999"
|
|
|
+ android:textSize="12sp"
|
|
|
+ />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:id="@+id/rhzf_detail_tv_tsqk"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginLeft="4dp"
|
|
|
+ android:textColor="#ff111111"
|
|
|
+ android:textSize="12sp"
|
|
|
+ />
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <View
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:background="#e7e7e7"
|
|
|
+ android:layout_height="0.5dp"/>
|
|
|
+
|
|
|
+ <RelativeLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:orientation="horizontal"
|
|
|
+ android:id="@+id/rhzf_detail_layout_fz"
|
|
|
+ android:layout_marginTop="11dp"
|
|
|
+ android:layout_height="wrap_content">
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:layout_width="48dp"
|
|
|
+ android:layout_marginLeft="12dp"
|
|
|
+ android:id="@+id/rhzf_detail_iv_fz_zp"
|
|
|
+ android:layout_height="48dp"/>
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:layout_width="32dp"
|
|
|
+ android:layout_marginLeft="36dp"
|
|
|
+ android:visibility="invisible"
|
|
|
+ android:id="@+id/rhzf_detail_iv_tag"
|
|
|
+ android:layout_marginTop="51dp"
|
|
|
+ android:layout_height="32dp"/>
|
|
|
+
|
|
|
+ <RelativeLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_marginLeft="4dp"
|
|
|
+ android:layout_marginRight="12dp"
|
|
|
+ android:layout_marginBottom="12dp"
|
|
|
+ android:layout_toRightOf="@id/rhzf_detail_iv_tag"
|
|
|
+ android:layout_height="wrap_content">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:text="赵一天"
|
|
|
+ android:id="@+id/rhzf_detail_tv_name"
|
|
|
+ android:textColor="#ff111111"
|
|
|
+ android:textSize="14sp"/>
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:layout_width="16dp"
|
|
|
+ android:layout_toRightOf="@id/rhzf_detail_tv_name"
|
|
|
+ android:layout_marginLeft="8dp"
|
|
|
+ android:id="@+id/rhzf_detail_iv_sex"
|
|
|
+ android:layout_marginTop="2dp"
|
|
|
+ android:background="@drawable/icon_boy"
|
|
|
+ android:layout_height="16dp"/>
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:text="在此居住"
|
|
|
+ android:visibility="gone"
|
|
|
+ android:id="@+id/rhzf_detail_tv_zcjz"
|
|
|
+ android:layout_alignParentRight="true"
|
|
|
+ android:layout_marginTop="2dp"
|
|
|
+ android:textColor="#ff30b344"
|
|
|
+ android:textSize="12sp"
|
|
|
+ />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/rhzf_detail_tv_sfzh"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginTop="8dp"
|
|
|
+ android:layout_below="@id/rhzf_detail_tv_name"
|
|
|
+ android:text="220102 1978 0120 1816|汉族"
|
|
|
+ android:textColor="#ff111111"
|
|
|
+ android:textSize="12sp"
|
|
|
+ />
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:orientation="horizontal"
|
|
|
+ android:id="@+id/rhzf_detail_layout_sfzh"
|
|
|
+ android:layout_below="@id/rhzf_detail_tv_sfzh"
|
|
|
+ android:layout_marginTop="8dp"
|
|
|
+ android:gravity="center_vertical"
|
|
|
+ android:layout_height="wrap_content">
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:layout_width="16dp"
|
|
|
+ android:background="@drawable/icon_fxpc_phone"
|
|
|
+ android:layout_height="16dp"/>
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:id="@+id/rhzf_detail_tv_phone"
|
|
|
+ android:text="188 4537 8246"
|
|
|
+ android:layout_marginLeft="8dp"
|
|
|
+ android:textColor="#ff111111"
|
|
|
+ android:textSize="12sp"
|
|
|
+ />
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:orientation="horizontal"
|
|
|
+ android:id="@+id/rhzf_detail_layout_dw"
|
|
|
+ android:layout_below="@id/rhzf_detail_layout_sfzh"
|
|
|
+ android:layout_marginTop="8dp"
|
|
|
+ android:gravity="center_vertical"
|
|
|
+ android:layout_height="wrap_content">
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:layout_width="16dp"
|
|
|
+ android:background="@drawable/icon_unit_gray"
|
|
|
+ android:layout_height="16dp"/>
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:id="@+id/rhzf_detail_tv_dw"
|
|
|
+ android:text="吉林省玄武科技有限公司"
|
|
|
+ android:layout_marginLeft="8dp"
|
|
|
+ android:textColor="#ff111111"
|
|
|
+ android:textSize="12sp"
|
|
|
+ />
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:orientation="horizontal"
|
|
|
+ android:id="@+id/rhzf_detail_layout_jzdz"
|
|
|
+ android:layout_below="@id/rhzf_detail_layout_dw"
|
|
|
+ android:layout_marginTop="8dp"
|
|
|
+ android:gravity="center_vertical"
|
|
|
+ android:layout_height="wrap_content">
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:layout_width="16dp"
|
|
|
+ android:background="@drawable/icon_address_gray"
|
|
|
+ android:layout_height="16dp"/>
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:id="@+id/rhzf_detail_tv_xjzd"
|
|
|
+ android:text="长春市绿园区绿源小区A8栋4-301"
|
|
|
+ android:layout_marginLeft="8dp"
|
|
|
+ android:textColor="#ff111111"
|
|
|
+ android:textSize="12sp"
|
|
|
+ />
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ </RelativeLayout>
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ </RelativeLayout>
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+
|
|
|
+ </com.google.android.material.appbar.CollapsingToolbarLayout>
|
|
|
+ <com.google.android.material.tabs.TabLayout
|
|
|
+ android:id="@+id/rhzf_detail_tab"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="40dp"
|
|
|
+ android:paddingLeft="8dp"
|
|
|
+ android:paddingRight="8dp"
|
|
|
+ app:tabMode="scrollable"
|
|
|
+ app:tabIndicatorHeight="0dp"
|
|
|
+ app:tabSelectedTextColor="@color/blue"
|
|
|
+ app:tabTextColor="#666666" />
|
|
|
+
|
|
|
+ </com.google.android.material.appbar.AppBarLayout>
|
|
|
+
|
|
|
+ <androidx.viewpager2.widget.ViewPager2
|
|
|
+ android:id="@+id/rhzf_detail_vp"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ app:layout_behavior="@string/appbar_scrolling_view_behavior"
|
|
|
+ android:layout_height="match_parent"/>
|
|
|
+ </androidx.coordinatorlayout.widget.CoordinatorLayout>
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:orientation="horizontal"
|
|
|
+ android:layout_below="@id/title_bar"
|
|
|
+ android:background="#f8f8f8"
|
|
|
+ android:visibility="gone"
|
|
|
+ android:gravity="center_vertical"
|
|
|
+ android:id="@+id/rhzf_detail_holder_layout"
|
|
|
+ android:layout_height="44dp">
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:layout_width="32dp"
|
|
|
+ android:id="@+id/rhzf_detail_holder_iv_zp"
|
|
|
+ android:layout_marginLeft="16dp"
|
|
|
+ android:layout_height="32dp"/>
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginLeft="8dp"
|
|
|
+ android:text="吉林省长春市朝阳区飞跃街道学苑街众诚·一品东南1栋 1单元101室"
|
|
|
+ android:textColor="#ff111111"
|
|
|
+ android:textSize="12sp"
|
|
|
+ />
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+</RelativeLayout>
|