26 lines
972 B
XML
26 lines
972 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="@drawable/shape_white_30_corners"
|
|
android:gravity="center"
|
|
android:orientation="vertical">
|
|
|
|
<TextView
|
|
android:id="@+id/tvContent"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textColor="@color/black"
|
|
android:textSize="36sp"
|
|
tools:text="暂无数据" />
|
|
|
|
<TextView
|
|
android:id="@+id/tvSubContent"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="30dp"
|
|
android:textColor="@color/gray_c8"
|
|
android:textSize="28sp"
|
|
tools:text="今日暂无采样数据,点击下方按钮新增采样" />
|
|
</LinearLayout> |