Add back action to screenshot page

This commit is contained in:
Rahul Kumar Patel
2021-02-16 09:28:23 +05:30
parent b6ccf6d3cf
commit 59e381b889
2 changed files with 36 additions and 1 deletions

View File

@@ -19,13 +19,23 @@
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent">
<androidx.appcompat.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:translationZ="1dp"
android:background="@color/colorTransparent"
app:layout_scrollFlags="enterAlways|exitUntilCollapsed" />
<com.airbnb.epoxy.EpoxyRecyclerView
android:id="@+id/recycler_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal"
app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager" />
app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager"
tools:listitem="@layout/view_screenshot" />
</RelativeLayout>