Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想通过我的一些应用偏好打开两个具有相同图标的活动。谁能告诉我如何在运行时做到这一点?
你不能。您只能拥有一个具有所需意图过滤器的 Activity:
<intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter>
您可以做的是启动启动画面,然后在其中检查您的偏好。根据偏好,您可以启动相应的活动。