Skip to content

Instantly share code, notes, and snippets.

@yoesuv
Created June 1, 2020 09:26
Show Gist options
  • Save yoesuv/05fc91f1b58c2233d97a4a0a92f5dd98 to your computer and use it in GitHub Desktop.
Save yoesuv/05fc91f1b58c2233d97a4a0a92f5dd98 to your computer and use it in GitHub Desktop.
import android.content.Context
import androidx.appcompat.app.AppCompatActivity
import com.yoesuv.switchlanguage.data.LanguagePreferences
import java.util.*
abstract class BaseActivity: AppCompatActivity() {
override fun attachBaseContext(newBase: Context?) {
val locale = Locale(LanguagePreferences.appLanguage)
val context = ContextWrapper.wrap(newBase!!, locale)
super.attachBaseContext(context)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment