设置android:excludeFromRecents="true"以后,在最近任务中无法滑动删除app
时间: 2023-12-10 12:06:13 浏览: 61
是的,当你将`android:excludeFromRecents="true"`添加到你的应用程序的Manifest文件中时,你的应用程序将被标记为“排除在最近任务列表之外”,这意味着你的应用程序将不再出现在最近任务列表中,也不能从最近任务列表中删除。用户只能通过返回键或者其他方式退出你的应用程序。请注意,这种设置可能会影响用户体验,因为用户可能会忘记如何退出你的应用程序,或者他们可能会感到困惑。因此,你应该谨慎地使用这个选项。
相关问题
怎样把Manifest中的<application android:allowBackup="true" android:dataExtractionRules="@xml/data_extraction_rules" android:fullBackupContent="@xml/backup_rules" android:icon="@mipmap/ic_launcher" android:label="冗余文件清理" android:textColor="@android:color/white" android:supportsRtl="true" android:theme="@style/Theme.Test11" tools:targetApi="31"> <activity android:name=".ListActivity" android:exported="true" /> <activity android:name=".FileDeleteActivity" android:exported="true" /> <activity android:name=".MainActivity" android:exported="true"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> </application>的label字体变成白色
你可以将 <application> 标签中的 android:label 属性的值设置为 "@string/your_label_name",然后在 strings.xml 文件中添加对应的字符串资源,并设置其颜色为白色。具体操作步骤如下:
1. 打开 strings.xml 文件,找到或创建一个与 label 相关的字符串资源,例如:
<string name="app_name">冗余文件清理</string>
2. 在该字符串资源中添加 textColor 属性,设置其值为白色,例如:
<string name="app_name" textColor="@android:color/white">冗余文件清理</string>
3. 在 AndroidManifest.xml 文件中的 <application> 标签中,将 android:label 属性的值设置为刚才添加了 textColor 属性的字符串资源,例如:
<application
...
android:label="@string/app_name"
.../>
4. 保存文件并重新构建项目,此时应该能够看到 label 的字体变成了白色。
怎样把Manifest中的<application android:allowBackup="true" android:dataExtractionRules="@xml/data_extraction_rules" android:fullBackupContent="@xml/backup_rules" android:icon="@mipmap/ic_launcher" android:label="冗余文件清理" android:textColor="@android:color/white" android:supportsRtl="true" android:theme="@style/Theme.Test11" tools:targetApi="31"> <activity android:name=".ListActivity" android:exported="true" /> <activity android:name=".FileDeleteActivity" android:exported="true" /> <activity android:name=".MainActivity" android:exported="true"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> </application>的label字体变成白色
可以在Manifest中的application标签中加入android:label="@string/app_name",然后在res/values/colors.xml文件中定义一个白色的颜色值:
```xml
<resources>
<color name="white">#FFFFFF</color>
</resources>
```
最后,在res/values/styles.xml文件中定义一个新的AppTheme,将android:textColorPrimary属性设置为白色:
```xml
<resources>
<style name="AppTheme" parent="Theme.Test11">
<item name="android:textColorPrimary">@color/white</item>
</style>
</resources>
```
然后在Manifest中的application标签中将android:theme属性设置为新的AppTheme即可:
```xml
<application
android:allowBackup="true"
android:dataExtractionRules="@xml/data_extraction_rules"
android:fullBackupContent="@xml/backup_rules"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme"
tools:targetApi="31">
<activity android:name=".ListActivity" android:exported="true" />
<activity android:name=".FileDeleteActivity" android:exported="true" />
<activity android:name=".MainActivity" android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
```
阅读全文