2018-10-19 15:26:38 +03:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2018-10-21 21:27:50 +03:00
|
|
|
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2018-10-29 16:57:36 +03:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2018-10-21 21:27:50 +03:00
|
|
|
android:layout_width="match_parent"
|
2018-10-19 15:26:38 +03:00
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
2018-10-29 16:57:36 +03:00
|
|
|
<android.support.v7.widget.Toolbar
|
|
|
|
android:id="@+id/toolbar"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="?actionBarSize"
|
|
|
|
android:background="@color/dark"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
|
|
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
|
|
|
|
app:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar" />
|
|
|
|
|
2018-10-22 16:17:50 +03:00
|
|
|
<com.airbnb.epoxy.EpoxyRecyclerView
|
2018-10-21 21:27:50 +03:00
|
|
|
android:id="@+id/recyclerView"
|
2018-10-29 16:57:36 +03:00
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="0dp"
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toBottomOf="@id/toolbar" />
|
2018-10-19 16:30:40 +03:00
|
|
|
|
2018-10-19 15:26:38 +03:00
|
|
|
</android.support.constraint.ConstraintLayout>
|