19 lines
582 B
XML
19 lines
582 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:background="@color/color_F5"
|
|
android:orientation="vertical">
|
|
|
|
<include layout="@layout/common_toolbar"></include>
|
|
|
|
<TextView
|
|
android:id="@+id/tvContent"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_marginTop="@dimen/dp_12"
|
|
android:padding="@dimen/dp_12"
|
|
/>
|
|
|
|
|
|
</LinearLayout> |