|
@@ -83,16 +83,15 @@
|
|
android:label="@string/app_name"
|
|
android:label="@string/app_name"
|
|
android:supportsRtl="true">
|
|
android:supportsRtl="true">
|
|
<activity android:name=".activity.NurseHomeActivity"
|
|
<activity android:name=".activity.NurseHomeActivity"
|
|
- android:screenOrientation="landscape"
|
|
|
|
- android:launchMode="singleInstance">
|
|
|
|
|
|
+ android:screenOrientation="landscape">
|
|
<intent-filter>
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN"/>
|
|
<action android:name="android.intent.action.MAIN"/>
|
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER"/>
|
|
<category android:name="android.intent.category.LAUNCHER"/>
|
|
|
|
|
|
<!-- 设置成桌面模式 -->
|
|
<!-- 设置成桌面模式 -->
|
|
- <category android:name="android.intent.category.HOME" />
|
|
|
|
- <category android:name="android.intent.category.DEFAULT" />
|
|
|
|
|
|
+<!-- <category android:name="android.intent.category.HOME" />
|
|
|
|
+ <category android:name="android.intent.category.DEFAULT" />-->
|
|
</intent-filter>
|
|
</intent-filter>
|
|
</activity>
|
|
</activity>
|
|
|
|
|
|
@@ -101,6 +100,15 @@
|
|
android:launchMode="singleTask"
|
|
android:launchMode="singleTask"
|
|
android:excludeFromRecents="true"/>
|
|
android:excludeFromRecents="true"/>
|
|
|
|
|
|
|
|
+ <receiver
|
|
|
|
+ android:name=".receiver.WdBootReceiver"
|
|
|
|
+ android:enabled="true"
|
|
|
|
+ android:exported="true">
|
|
|
|
+ <intent-filter android:priority="1000">
|
|
|
|
+ <action android:name="android.intent.action.BOOT_COMPLETED"/>
|
|
|
|
+ </intent-filter>
|
|
|
|
+ </receiver>
|
|
|
|
+
|
|
<!--<service android:name=".service.APPService"
|
|
<!--<service android:name=".service.APPService"
|
|
android:process=":myService"/>-->
|
|
android:process=":myService"/>-->
|
|
|
|
|