我想让用户能够选择不同语言的应用程序 UI 和内容的语言。我想用用户选择的新语言从服务器重新加载新的本地化数据。
要使用新的语言设置重新创建应用程序,我计划:
- 将所选语言保存到共享首选项。
- 在我的两个 IntentService 上调用 stopService()。
- 使用此处的答案完全杀死当前正在运行的应用程序:如何以编程方式“重新启动”Android 应用程序?
- 在 MyApplication 启动时,首先检查共享首选项以及它们是否包含新的用户语言 - 然后清除几乎所有在 SharedPreferances、Realm 数据库中的记录。
- 再次启动所有服务,现在它们将转到服务器并使用新的语言首选项获取新数据。
接下来是我想了解的关于应用程序杀戮的内容:
在杀死我当前正在运行的应用程序的那一刻 - 我所有正在运行
Services, Threads, ThreadExecutors, CompositeDisposable, WorkEnqueuer, Runnables, AsyncTasks, Handlers
的线程和(在后台工作)的东西都会System.exit(0)
在被调用 的同时停止吗?这是否意味着当我杀死我的应用程序时,它也会完全立即停止所有与线程相关的东西的工作?我使用的所有库是否都会从内存中卸载,然后在第二次启动时正确重新初始化?像这样的库:
RealmDB, Firebase, Dagger, RxJava2, Retrofit
?下面列出了我在项目中使用的库和服务列表。所有静态变量都会重新初始化吗?
谢谢。
这是我使用的清单和库:
<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