BayernMessenger/app/src/main/res/layout/fragment_room_detail.xml

27 lines
1.2 KiB
XML
Raw Normal View History

2018-10-19 12:26:38 +00:00
<?xml version="1.0" encoding="utf-8"?>
2018-10-21 18:27:50 +00:00
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
2018-10-21 18:27:50 +00:00
android:layout_width="match_parent"
2018-10-19 12:26:38 +00:00
android:layout_height="match_parent">
<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" />
<com.airbnb.epoxy.EpoxyRecyclerView
2018-10-21 18:27:50 +00:00
android:id="@+id/recyclerView"
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 13:30:40 +00:00
2018-10-19 12:26:38 +00:00
</android.support.constraint.ConstraintLayout>