19 lines
576 B
XML
19 lines
576 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="80dp"
|
|
android:gravity="center"
|
|
android:orientation="vertical"
|
|
android:background="@color/background_light">
|
|
|
|
<TextView
|
|
android:id="@+id/tv_task_empty_tip"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="暂无任务"
|
|
android:textColor="@color/gray"
|
|
android:textSize="14sp" />
|
|
|
|
</LinearLayout>
|
|
|