Created
April 18, 2020 08:37
-
-
Save hosseiniSeyRo/ab7f1410dac89cc51a7c1091494ab86c to your computer and use it in GitHub Desktop.
RtL Direction to whole app
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
open class BaseActivity : AppCompatActivity() { | |
override fun onCreate(savedInstanceState: Bundle?) { | |
super.onCreate(savedInstanceState) | |
val configuration: Configuration = resources.configuration | |
configuration.setLayoutDirection(Locale("fa")) | |
resources.updateConfiguration(configuration, resources.displayMetrics) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment