2

我想让用户能够选择不同语言的应用程序 UI 和内容的语言。我想用用户选择的新语言从服务器重新加载新的本地化数据。

要使用新的语言设置重新创建应用程序,我计划:

  1. 将所选语言保存到共享首选项。
  2. 在我的两个 IntentService 上调用 stopService()。
  3. 使用此处的答案完全杀死当前正在运行的应用程序:如何以编程方式“重新启动”Android 应用程序?
  4. 在 MyApplication 启动时,首先检查共享首选项以及它们是否包含新的用户语言 - 然后清除几乎所有在 SharedPreferances、Realm 数据库中的记录。
  5. 再次启动所有服务,现在它们将转到服务器并使用新的语言首选项获取新数据。

接下来是我想了解的关于应用程序杀戮的内容:

  1. 在杀死我当前正在运行的应用程序的那一刻 - 我所有正在运行Services, Threads, ThreadExecutors, CompositeDisposable, WorkEnqueuer, Runnables, AsyncTasks, Handlers 的线程和(在后台工作)的东西都会System.exit(0)在被调用 的同时停止吗?这是否意味着当我杀死我的应用程序时,它也会完全立即停止所有与线程相关的东西的工作?

  2. 我使用的所有库是否都会从内存中卸载,然后在第二次启动时正确重新初始化?像这样的库:RealmDB, Firebase, Dagger, RxJava2, Retrofit?下面列出了我在项目中使用的库和服务列表。

  3. 所有静态变量都会重新初始化吗?

谢谢。

这是我使用的清单和库:

<application
        android:allowBackup="false"
        android:hardwareAccelerated="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:largeHeap="true"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsRtl="true"
        android:name=".application.MyApplication"
        android:theme="@style/AppTheme"
        tools:replace="android:allowBackup">

    <activity
            android:name=".view.activity.SplashActivity"
            android:label="@string/app_name"
            android:screenOrientation="portrait"
            android:launchMode="singleTask"
            android:theme="@style/Theme.AppCompat.Translucent">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

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

    <service android:name=".services.MyFirebaseMessagingService">
            <intent-filter>
                <action android:name="com.google.firebase.MESSAGING_EVENT" />
            </intent-filter>
        </service>

        <service android:name=".services.MyFirebaseInstanceIDService">
            <intent-filter>
                <action android:name="com.google.firebase.INSTANCE_ID_EVENT" />
            </intent-filter>
        </service>

    <receiver android:name="com.appsflyer.MultipleInstallBroadcastReceiver" android:exported="true">
            <intent-filter>
                <action android:name="com.android.vending.INSTALL_REFERRER" />
            </intent-filter>
        </receiver>

    <receiver android:name="io.branch.referral.InstallListener" android:exported="true">
            <intent-filter>
                <action android:name="com.android.vending.INSTALL_REFERRER" />
            </intent-filter>
        </receiver>

        <receiver
            android:name="com.google.android.gms.analytics.AnalyticsReceiver"
            android:enabled="true">
            <intent-filter>
                <action android:name="com.google.android.gms.analytics.ANALYTICS_DISPATCH" />
            </intent-filter>
        </receiver>


    <service
            android:name="com.google.android.gms.analytics.AnalyticsService"
            android:enabled="true"
            android:exported="false" />

        <receiver
            android:name="com.google.android.gms.measurement.AppMeasurementReceiver"
            android:enabled="true"
            android:exported="false"/>

        <receiver
            android:name="com.google.android.gms.measurement.AppMeasurementInstallReferrerReceiver"
            android:enabled="true"
            android:permission="android.permission.INSTALL_PACKAGES">
            <intent-filter>
                <action android:name="com.android.vending.INSTALL_REFERRER" />
            </intent-filter>
        </receiver>

    <service
            android:name="com.google.android.gms.measurement.AppMeasurementService"
            android:enabled="true"
            android:exported="false" />

    <service
            android:name=".services.MyIntentService"
            android:enabled="true"
            android:exported="false" />
        <service
            android:name=".services.MyJobIntentService"
            android:exported="false"
            android:permission="android.permission.BIND_JOB_SERVICE" />

</application>

图书馆:

com.google.dagger:dagger
com.jakewharton:butterknife
io.reactivex.rxjava2:rxjava
com.github.bumptech.glide:glide
com.google.code.gson:gson
com.squareup.retrofit2:retrofit
com.facebook.android:facebook-android-sdk
com.google.android.gms:play-services-auth
com.google.firebase:firebase-core
io.realm:realm-gradle-plugin
4

1 回答 1

2

如果您调用system.exit(),托管您的应用程序的操作系统进程将会死掉。这将被视为“应用程序崩溃”,并可能会向用户显示一个指示该情况的对话框。这不是关闭应用程序的用户友好方式,也不是在 Android 上执行此操作的常用方式。

在任何情况下,您的所有代码都将停止运行(所有线程),所有库都将被卸载,所有静态变量都将被清除,因为 OS 进程将死亡并且一切都会消失。

于 2018-09-03T16:14:51.563 回答