Android应用,具有两个作为入口点的活动。

huangapple go评论74阅读模式
英文:

Android app with two activities as enter points

问题

App包含两个活动,作为清单中描述的入口点。

<activity
    android:name=".ui.screen.main.MainActivity"
    android:icon="@mipmap/ic_tracker_launcher" >
    <intent-filter android:label="@string/app_name" >
        <action android:name="android.intent.action.MAIN" />
        <category android:name="android.intent.category.LAUNCHER" />
    </intent-filter>
</activity>
<activity
    android:name=".ui.screen.main.MapEnterActivity"
    android:icon="@mipmap/ic_watcher_launcher" >
    <intent-filter android:label="@string/app_name_watcher" >
        <action android:name="android.intent.action.MAIN" />
        <category android:name="android.intent.category.LAUNCHER" />
    </intent-filter>
</activity>

因此,我们在移动桌面上有两个图标。

我需要解决的问题是,当其中一个图标启动相应的活动并且用户按下“返回”按钮(应用程序未被关闭),然后按下另一个图标并启动另一个活动时,他不能通过其图标运行另一个活动,而是再次显示第一个活动。因此,在正确运行另一个活动之前,应将第一个活动关闭。

是否可能通过其图标运行每个活动而无需手动关闭应用程序(需要对用户来说是方便的),以及如何实现这一点?

非常感谢任何建议。

英文:

App contains of two activities as enter points as desctibed in manifest.

    &lt;activity
        android:name=&quot;.ui.screen.main.MainActivity&quot;
        android:icon=&quot;@mipmap/ic_tracker_launcher&quot; &gt;
        &lt;intent-filter android:label=&quot;@string/app_name&quot; &gt;
            &lt;action android:name=&quot;android.intent.action.MAIN&quot; /&gt;

            &lt;category android:name=&quot;android.intent.category.LAUNCHER&quot; /&gt;
        &lt;/intent-filter&gt;
    &lt;/activity&gt;
    &lt;activity
        android:name=&quot;.ui.screen.main.MapEnterActivity&quot;
        android:icon=&quot;@mipmap/ic_watcher_launcher&quot; &gt;
        &lt;intent-filter android:label=&quot;@string/app_name_watcher&quot; &gt;
            &lt;action android:name=&quot;android.intent.action.MAIN&quot; /&gt;

            &lt;category android:name=&quot;android.intent.category.LAUNCHER&quot; /&gt;
        &lt;/intent-filter&gt;
    &lt;/activity&gt;

So as a result we have two icons at mobile desktop.

The problem I need to solve is when one of icons launched corresponding activity and user press "back" button (app not killed) to press another icon and launch another activity - he couldn't run another activity via its icon and the first one appears again. So it should be killed before running another activity correctly.

Is it possible to run each activity via its icon without killing app manually (need to be comfortable for user) and how to implement this?

Many thanks for any suggestions.

答案1

得分: 1

在每个活动上添加android:taskAffinity

<activity
    android:taskAffinity="com.example.MainActivity"
    android:name=".ui.screen.main.MainActivity"
    android:icon="@mipmap/ic_tracker_launcher" >
    <intent-filter android:label="@string/app_name" >
        <action android:name="android.intent.action.MAIN" />

        <category android:name="android.intent.category.LAUNCHER" />
    </intent-filter>
</activity>
<activity
    android:taskAffinity="com.example.MapEnterActivity"
    android:name=".ui.screen.main.MapEnterActivity"
    android:icon="@mipmap/ic_watcher_launcher" >
    <intent-filter android:label="@string/app_name_watcher" >
        <action android:name="android.intent.action.MAIN" />

        <category android:name="android.intent.category.LAUNCHER" />
    </intent-filter>
</activity>
英文:

add android:taskAffinity on each activity

 &lt;activity
    android:taskAffinity=&quot;com.example.MainActivity&quot;
    android:name=&quot;.ui.screen.main.MainActivity&quot;
    android:icon=&quot;@mipmap/ic_tracker_launcher&quot; &gt;
    &lt;intent-filter android:label=&quot;@string/app_name&quot; &gt;
        &lt;action android:name=&quot;android.intent.action.MAIN&quot; /&gt;

        &lt;category android:name=&quot;android.intent.category.LAUNCHER&quot; /&gt;
    &lt;/intent-filter&gt;
&lt;/activity&gt;
&lt;activity
    android:taskAffinity=&quot;com.example.MapEnterActivity&quot;
    android:name=&quot;.ui.screen.main.MapEnterActivity&quot;
    android:icon=&quot;@mipmap/ic_watcher_launcher&quot; &gt;
    &lt;intent-filter android:label=&quot;@string/app_name_watcher&quot; &gt;
        &lt;action android:name=&quot;android.intent.action.MAIN&quot; /&gt;

        &lt;category android:name=&quot;android.intent.category.LAUNCHER&quot; /&gt;
    &lt;/intent-filter&gt;
&lt;/activity&gt;

huangapple
  • 本文由 发表于 2020年10月1日 04:34:02
  • 转载请务必保留本文链接:https://go.coder-hub.com/64145330.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定