答案 0 :(得分:4)
您可以在Android 7.0及更高版本上使用此功能,只需将此行代码添加到清单中即可:
<intent-filter>
<action android:name="android.intent.action.APPLICATION_PREFERENCES" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
答案 1 :(得分:0)
在Android 7.0及更高版本中,您可以在设置活动中使用此<intent-filter>
:
<intent-filter>
<action android:name="android.intent.action.APPLICATION_PREFERENCES" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
“设置”应用应该选择该选项并通过该齿轮图标将其提供给用户。