23 lines
666 B
XML
23 lines
666 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<layout xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
<RelativeLayout
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:id="@+id/activity_main"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
tools:context="com.example.arial.test.MainActivity"
|
|
>
|
|
|
|
<include layout="@layout/layout_bar"/>
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:id="@+id/list"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_below="@+id/toolbar"
|
|
/>
|
|
|
|
</RelativeLayout>
|
|
</layout>
|