All Projects → B3nedikt → Applocale

B3nedikt / Applocale

Licence: apache-2.0
AppLocale is a android library to update the app language dynamically.

Programming Languages

kotlin
9241 projects

Download Build Status codecov Documentation

App Locale 2.0.3

AppLocale is a android library to change the app language dynamically.

1. Add dependencies

In addition to appcompat from androidX which you most likely already use, the following three dependencies are needed:

// Manages the Locale used by the app
implementation 'dev.b3nedikt.applocale:applocale:2.0.3'

// Needed to intercept view inflation
implementation 'dev.b3nedikt.viewpump:viewpump:4.0.7'

// Allows to update the text of views at runtime without recreating the activity
implementation 'dev.b3nedikt.reword:reword:4.0.1'

2. Initialize

Initialize ViewPump & Reword in your Application class:

// To dynamically update views we need to intercept view inflation and update
// the text of each view. The libraries ViewPump and reword do exactly that when setup
// like this:
ViewPump.init(RewordInterceptor)

3. Inject into Context

If you have a BaseActivity you can add this there, otherwise you have to add it to all of your activities:

abstract class BaseActivity : AppCompatActivity() {

    private val appCompatDelegate: AppCompatDelegate by lazy {
        ViewPumpAppCompatDelegate(
                baseDelegate = super.getDelegate(),
                baseContext = this,
                wrapContext = { baseContext -> AppLocale.wrap(baseContext) }
        )
    }

    override fun getDelegate(): AppCompatDelegate {
        return appCompatDelegate
    }
}

3. Update the app language

Now we can just set the desiredLocale to the Locale we want our app to use:

AppLocale.desiredLocale = Locale.FRENCH

When the activity gets restarted, all texts will be localized using the new Locale.

Alternativeley you can reload the UI like this:

// If we want to update the app language without restarting the activity,
// we need to perform the update of the texts manually:
val rootView = window.decorView.findViewById<ContentFrameLayout>(android.R.id.content)
Reword.reword(rootView)

If you use this approach and you changed the texts of views in code, you need to update these texts manually of course.

App Bundle support

If you use the new android app bundle (aab) format to distribute your app, android will strip out all languages which are not the users devices default language. To disable this add this to your build.gradle:

android {
    bundle {
        language {
            // We want to be able to switch the locale at runtime using AppLocale!
            enableSplit = false
        }
    }
}

Alternatively load the languages dynamically using the playcore library as described in its Documentation.

Notes

Should you use the application context somewhere to retrieve strings and inject it with a DI tool like koin or dagger, I would recommend wrapping it in your application class like this:

class App : Application() {

    ...

    override fun attachBaseContext(newBase: Context) {
        super.attachBaseContext(AppLocale.wrap(newBase))
    }

    override fun getResources(): Resources {
        return AppLocale.wrap(baseContext).resources
    }
}

License

Copyright 2020 applocale Contributors.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].