summaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/f_language_selection.xml
diff options
context:
space:
mode:
authorNorbel Ambanumben <nambanumben@riseup.net>2024-10-07 21:31:33 +0000
committercyberta <cyberta@riseup.net>2024-10-07 21:31:33 +0000
commit61106968cbdf96a4fa578d16aff03865b985e547 (patch)
tree8ff5d3ea1f2b562e885f4c7e3297ec3bda804fd3 /app/src/main/res/layout/f_language_selection.xml
parente15787e844ffe1c74b0ba783a9e37c7daa72b72a (diff)
feat: add language selection
Diffstat (limited to 'app/src/main/res/layout/f_language_selection.xml')
-rw-r--r--app/src/main/res/layout/f_language_selection.xml17
1 files changed, 17 insertions, 0 deletions
diff --git a/app/src/main/res/layout/f_language_selection.xml b/app/src/main/res/layout/f_language_selection.xml
new file mode 100644
index 00000000..0569c7c1
--- /dev/null
+++ b/app/src/main/res/layout/f_language_selection.xml
@@ -0,0 +1,17 @@
+<?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"
+ xmlns:tools="http://schemas.android.com/tools"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:orientation="vertical"
+ android:layout_margin="@dimen/stdpadding"
+ tools:context=".base.fragments.LanguageSelectionFragment">
+
+ <androidx.recyclerview.widget.RecyclerView
+ android:id="@+id/languages"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ app:layout_constraintStart_toStartOf="parent"
+ app:layout_constraintTop_toTopOf="parent" />
+</androidx.constraintlayout.widget.ConstraintLayout> \ No newline at end of file