21 lines
746 B
XML
21 lines
746 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical">
|
|
<RelativeLayout
|
|
android:id="@+id/rl_title"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="48dp">
|
|
|
|
<include
|
|
android:id="@+id/included_title"
|
|
layout="@layout/include_activity_back_layout" />
|
|
</RelativeLayout>
|
|
<TextView
|
|
android:id="@+id/tv_balance"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textSize="20sp"
|
|
android:textColor="@color/color_zhu"/>
|
|
</LinearLayout> |