王學崗csdn——————跨進程通信Hermes

跨進程不會共享數據,我們看個很簡單的例子

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.hermestest">

    <application
        android:name=".MyApplication"
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">
        <activity android:name=".SecondActivity"
            android:process=":remote"></activity>
        <activity android:name=".MainActivity">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

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

</manifest>
package com.example.hermestest;

import android.app.Application;
import android.util.Log;

public class MyApplication extends Application {
    public static int i = 0;

    @Override
    public void onCreate() {
        super.onCreate();
        Log.i("zhang_xin",i+++"");
    }
}

我們分別啓動這兩個Activity,發現日誌打印兩次,但是每次都是0.

不寫了,推薦一篇文章
不寫了推薦一篇文章
進程間使用的EventBus

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章