Update Firebase ServerApp

This commit is contained in:
phanhuuloi27
2022-06-30 08:05:35 +07:00
parent 3f65237418
commit d2872f6b04
15 changed files with 357 additions and 83 deletions
@@ -0,0 +1,28 @@
<?xml version="1.0" encoding="utf-8"?>
<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"
android:id="@+id/rootLayout"
tools:context=".BannerActivity">
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/recycler_banner"
android:scrollbars="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
/>
<com.google.android.material.floatingactionbutton.FloatingActionButton
android:id="@+id/fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentRight="true"
android:layout_margin="@dimen/fab_margin"
android:backgroundTint="@color/white"
app:srcCompat="@drawable/ic_baseline_playlist_add_24"
/>
</RelativeLayout>