BayernMessenger/vector/src/main/res/layout/fragment_room_list.xml

52 lines
2.1 KiB
XML
Raw Normal View History

2018-10-19 12:26:38 +00:00
<?xml version="1.0" encoding="utf-8"?>
2019-05-15 17:44:06 +00:00
<im.vector.riotredesign.core.platform.StateView xmlns:android="http://schemas.android.com/apk/res/android"
2019-05-29 10:21:45 +00:00
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
2019-05-15 17:44:06 +00:00
android:id="@+id/stateView"
2018-10-19 12:26:38 +00:00
android:layout_width="match_parent"
android:layout_height="match_parent"
2019-06-06 12:37:30 +00:00
android:background="?riotx_header_panel_background">
2018-10-19 12:26:38 +00:00
2019-05-15 17:44:06 +00:00
<com.airbnb.epoxy.EpoxyRecyclerView
android:id="@+id/epoxyRecyclerView"
android:layout_width="match_parent"
android:layout_height="match_parent" />
2018-10-30 10:47:05 +00:00
<im.vector.riotredesign.features.home.room.list.widget.FabMenuView
android:id="@+id/createChatFabMenu"
2019-06-03 16:10:57 +00:00
android:layout_width="match_parent"
android:layout_height="match_parent"
2019-05-29 12:50:55 +00:00
android:visibility="gone"
tools:visibility="visible" />
2019-05-29 10:21:45 +00:00
<com.google.android.material.floatingactionbutton.FloatingActionButton
android:id="@+id/createChatRoomButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom|end"
android:layout_marginEnd="16dp"
android:layout_marginRight="16dp"
android:layout_marginBottom="16dp"
2019-05-29 10:21:45 +00:00
android:scaleType="center"
android:src="@drawable/ic_fab_add_chat"
2019-05-29 12:50:55 +00:00
android:visibility="gone"
2019-05-29 10:21:45 +00:00
app:maxImageSize="34dp"
tools:layout_marginEnd="80dp"
2019-05-29 12:50:55 +00:00
tools:visibility="visible" />
2019-05-29 10:21:45 +00:00
<com.google.android.material.floatingactionbutton.FloatingActionButton
android:id="@+id/createGroupRoomButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom|end"
android:layout_marginEnd="16dp"
android:layout_marginRight="16dp"
android:layout_marginBottom="16dp"
2019-05-29 10:21:45 +00:00
android:src="@drawable/ic_fab_add_room"
2019-05-29 12:50:55 +00:00
android:visibility="gone"
2019-05-29 10:21:45 +00:00
app:maxImageSize="32dp"
tools:layout_marginEnd="144dp"
2019-05-29 12:50:55 +00:00
tools:visibility="visible" />
2019-05-15 17:44:06 +00:00
</im.vector.riotredesign.core.platform.StateView>