activity_choose_country.xml

 1<?xml version="1.0" encoding="utf-8"?>
 2<layout xmlns:android="http://schemas.android.com/apk/res/android">
 3
 4    <LinearLayout
 5        android:layout_width="match_parent"
 6        android:layout_height="match_parent"
 7        android:fitsSystemWindows="true"
 8        android:orientation="vertical">
 9
10
11        <com.google.android.material.appbar.AppBarLayout
12            android:layout_width="match_parent"
13            android:layout_height="wrap_content">
14
15            <com.google.android.material.appbar.MaterialToolbar
16                android:id="@+id/toolbar"
17                android:layout_width="match_parent"
18                android:layout_height="wrap_content"
19                android:minHeight="?attr/actionBarSize" />
20
21        </com.google.android.material.appbar.AppBarLayout>
22
23        <androidx.recyclerview.widget.RecyclerView
24            android:id="@+id/countries"
25            android:layout_width="match_parent"
26            android:layout_height="wrap_content"
27            android:clipToPadding="false"
28            android:orientation="vertical"
29            android:padding="2dp"
30            android:scrollbars="vertical" />
31
32    </LinearLayout>
33</layout>