mirror of
https://gitea.winboll.cc/ZhanGSKen/MyWinBoLL.git
synced 2026-08-21 08:15:53 +08:00
510f50458b
- 新增 TaskSchedulerActivity 任务排档页面 - 新增 ic_task_scheduler 任务排档专用图标 - 新增 activity_task_scheduler 任务排档布局文件 - 在主界面添加任务排档入口按钮 - 在 AndroidManifest.xml 中注册新 Activity - 在 MainActivity 中添加跳转逻辑
51 lines
1.6 KiB
XML
51 lines
1.6 KiB
XML
<?xml version='1.0' encoding='utf-8'?>
|
|
<manifest
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="cc.winboll.studio.stallhelper">
|
|
|
|
<!-- 拥有完全的网络访问权限 -->
|
|
<uses-permission android:name="android.permission.INTERNET"/>
|
|
|
|
<application
|
|
android:name=".App"
|
|
android:allowBackup="true"
|
|
android:icon="@drawable/ic_stall"
|
|
android:label="@string/app_name"
|
|
android:theme="@style/MyStallHelperTheme"
|
|
android:supportsRtl="true">
|
|
|
|
<activity
|
|
android:name=".MainActivity"
|
|
android:label="@string/app_name"
|
|
android:launchMode="standard"
|
|
android:exported="true">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN"/>
|
|
|
|
<category android:name="android.intent.category.LAUNCHER"/>
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
<activity
|
|
android:name=".activities.AboutActivity"
|
|
android:label="AboutActivity"/>
|
|
|
|
<activity
|
|
android:name="cc.winboll.studio.stallhelper.activities.PreNullDiningTableActivity"
|
|
android:windowSoftInputMode="adjustResize"/>
|
|
|
|
<activity
|
|
android:name="cc.winboll.studio.stallhelper.activities.CompleteDiningTableActivity"
|
|
android:windowSoftInputMode="adjustResize"/>
|
|
|
|
<activity android:name="cc.winboll.studio.stallhelper.activities.NoteRecordHelperActivity"/>
|
|
|
|
<activity android:name="cc.winboll.studio.stallhelper.activities.TaskSchedulerActivity"/>
|
|
|
|
</application>
|
|
|
|
</manifest> |