Android - 从其他应用程序

时间:2015-08-10 12:08:17

标签: android onresume multitasking-gestures

我有两个应用程序A(活动A1,A2,A3)和B(活动B1,B2)。 我的过程是这样的:

A1 -> A2 -> A3 -> B1 -> B2

我的问题是:从活动B2,如何恢复到现有活动A3 - 没有创建新活动A3 - 比如使用多任务按钮切换2个应用程序?

谢谢,

4 个答案:

答案 0 :(得分:1)

Intent是Android中的强大机制,允许您从另一个进程启动活动。

您只需要安装程序包和类名。就是这样。

例如:

Intent intent = new Intent();
intent.setComponent(new ComponentName("com.example", "com.example.MyExampleActivity"));
startActivity(intent);

此外,您可能需要{活动A3的singleInstance | singleTask启动模式。

当您需要启动A3时,您需要将FLAG_ACTIVITY_REORDER_TO_FRONT设置为您的意图,并将A3重新排序到前面。

如何在Android中制作IRC:read here

答案 1 :(得分:1)

你需要使用singleTop来使活动始终使用相同的实例,然后只要我们从另一个活动(通过意图)返回活动,就会触发onNewIntent活动

<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="..." >
<application ...>
    <!-- android:launchMode="singleTop" makes sure we reuse the same instance -->
    <activity android:name=".A3Activity" android:label="@string/app_name"
        android:launchMode="singleTop">...</activity>
    ...
</application>


public class A3Activity extends Activity {
    @Override
    protected void onNewIntent(Intent intent) {
        //This is triggered onyl when re-launched
        super.onNewIntent(intent);
        //do anything new here
    }
}

public class B2Activity extends Activity {

    public void someMethod() {
        //This relaunches the A3 activity from same app
        //Intent intent = new Intent(this, A3Activity.class);

        //This does it from the other app
        Intent intent = new Intent(
        intent.setComponent(new ComponentName("com.anh", "com.anh.A3Activity"));
        startActivity(intent);
    } 

}

答案 2 :(得分:0)

首先从B2到B1你需要这个

Intent intent = new Intent(this, B1.Class);
intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
intent.putExtra("fromB",true);
startActivity(intent);
finish(); 

当你在onCreate的B1中时,把这个

 Bundle b = getIntent().getExtras();
 if(b.getBoolean()){
   Intent intent = new Intent(this, A3.Class);
   intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
   intent.putExtra("fromB",true);
   startActivity(intent);
   finish(); 
 }

我认为这会有所帮助:D

答案 3 :(得分:-1)

重定向到B1时 - > B2 call finish();在活动B1 ..