mirror of
https://github.com/fork-maintainers/iceraven-browser
synced 2024-11-03 23:15:31 +00:00
ea2411a88b
* For #220 - Added advanced header + locale settings item in the settings fragment * For #220 - Added locale selection page with lib state + handling of locale changes * For #220 - Removed registering for locale changes in the manifest, allow system to restart activity in that scenario * For #220 - Added unit tests for locale settings page * For #220: fixed an outdated unit test ga-a Co-authored-by: Severin Rudie <Baron-Severin@users.noreply.github.com>
16 lines
703 B
XML
16 lines
703 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<FrameLayout
|
|
android:id="@+id/locale_container"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintTop_toTopOf="parent" />
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout> |