136 lines
5.3 KiB
XML
136 lines
5.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<layout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
>
|
|
<data>
|
|
<variable
|
|
name="myentity"
|
|
type="entity.HomeEntity">
|
|
|
|
</variable>
|
|
</data>
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:orientation="vertical"
|
|
android:id="@+id/fragmentRecyclerviewVorizationItem"
|
|
android:layout_height="wrap_content">
|
|
<View
|
|
android:layout_width="match_parent"
|
|
android:background="#F7F7F7"
|
|
android:layout_height="10dip" />
|
|
<LinearLayout
|
|
android:orientation="vertical"
|
|
android:layout_width="match_parent"
|
|
android:layout_marginRight="12dip"
|
|
android:layout_marginLeft="12dip"
|
|
android:background="@drawable/retacal_background"
|
|
android:layout_height="wrap_content">
|
|
|
|
<RelativeLayout
|
|
android:id="@+id/myl1"
|
|
android:layout_width="match_parent"
|
|
android:orientation="horizontal"
|
|
android:paddingLeft="15dip"
|
|
android:paddingRight="15dp"
|
|
android:layout_height="50dp">
|
|
|
|
<TextView
|
|
android:layout_width="match_parent"
|
|
android:layout_toLeftOf="@+id/image"
|
|
android:text="@{myentity.address}"
|
|
android:gravity="center_vertical"
|
|
android:textSize="16sp"
|
|
android:layout_height="match_parent" />
|
|
|
|
<ImageView
|
|
android:id="@+id/image"
|
|
android:layout_width="20dp"
|
|
android:layout_centerVertical="true"
|
|
android:background="@mipmap/check_box_normal"
|
|
android:layout_alignParentRight="true"
|
|
android:layout_height="20dp"/>
|
|
|
|
</RelativeLayout>
|
|
<View android:layout_width="match_parent"
|
|
android:layout_marginRight="15dip"
|
|
android:layout_marginLeft="15dip"
|
|
android:background="@color/lighteeeeee"
|
|
android:layout_height="0.5dip"/>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:orientation="horizontal"
|
|
android:paddingLeft="15dip"
|
|
android:paddingRight="15dip"
|
|
android:layout_height="50dp">
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:text="物业费剩余:"
|
|
android:textSize="16sp"
|
|
android:gravity="center_vertical"
|
|
android:layout_height="match_parent" />
|
|
<TextView
|
|
android:layout_width="0dp"
|
|
android:layout_weight="1"
|
|
android:textSize="16sp"
|
|
android:gravity="center_vertical"
|
|
android:text="@{@string/me_money_unit+myentity.property_costs}"
|
|
android:layout_marginLeft="4dip"
|
|
android:layout_height="wrap_content" />
|
|
|
|
</LinearLayout>
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:orientation="horizontal"
|
|
android:padding="15dip"
|
|
android:visibility="gone"
|
|
android:layout_height="wrap_content">
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:text=""
|
|
android:layout_height="wrap_content" />
|
|
<TextView
|
|
android:layout_width="match_parent"
|
|
android:text=""
|
|
android:layout_marginLeft="15dip"
|
|
android:visibility="gone"
|
|
android:layout_height="wrap_content" />
|
|
|
|
</LinearLayout>
|
|
|
|
<View android:layout_width="match_parent"
|
|
android:layout_marginLeft="15dip"
|
|
android:layout_marginRight="15dip"
|
|
android:background="@color/lighteeeeee"
|
|
android:layout_height="0.5dip"/>
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:orientation="horizontal"
|
|
android:padding="15dip"
|
|
android:visibility="gone"
|
|
android:layout_height="wrap_content">
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:text="可用余额"
|
|
|
|
android:layout_height="wrap_content" />
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:text=""
|
|
android:layout_marginLeft="15dip"
|
|
android:layout_height="wrap_content" />
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:text="当前金额"
|
|
android:layout_marginLeft="30dip"
|
|
android:layout_height="wrap_content" />
|
|
<TextView
|
|
android:layout_width="match_parent"
|
|
android:text=""
|
|
android:layout_marginLeft="15dip"
|
|
android:layout_height="wrap_content" />
|
|
|
|
</LinearLayout>
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
|
</layout> |