mirror of
https://gitea.winboll.cc/ZhanGSKen/MyWinBoLL.git
synced 2026-08-15 05:52:09 +08:00
510f50458b
- 新增 TaskSchedulerActivity 任务排档页面 - 新增 ic_task_scheduler 任务排档专用图标 - 新增 activity_task_scheduler 任务排档布局文件 - 在主界面添加任务排档入口按钮 - 在 AndroidManifest.xml 中注册新 Activity - 在 MainActivity 中添加跳转逻辑
41 lines
1.3 KiB
XML
41 lines
1.3 KiB
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"
|
|
android:background="?attr/activityBackgroundColor">
|
|
|
|
<androidx.appcompat.widget.Toolbar
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="?attr/toolbarBackgroundColor"
|
|
android:id="@+id/toolbar"/>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical"
|
|
android:padding="16dp"
|
|
android:gravity="center">
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="任务排档"
|
|
android:textSize="24sp"
|
|
android:textStyle="bold"
|
|
android:gravity="center"/>
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="功能开发中..."
|
|
android:textSize="16sp"
|
|
android:layout_marginTop="16dp"
|
|
android:gravity="center"/>
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|