Skip to content

Instantly share code, notes, and snippets.

@code978
Forked from sagar-viradiya/activity_main.xml
Created October 17, 2020 16:11
Show Gist options
  • Save code978/5aafb69b2097122ede11fae07833285b to your computer and use it in GitHub Desktop.
Save code978/5aafb69b2097122ede11fae07833285b to your computer and use it in GitHub Desktop.
DevFest India 2020 Day 1 - Main Acitvity UI
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:background="@color/backgroundColor"
tools:context=".MainActivity">
<androidx.core.widget.ContentLoadingProgressBar
android:id="@+id/progressBar"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
style="?android:attr/progressBarStyle" />
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/recyclerView"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager"
android:orientation="vertical"
android:visibility="gone"
tools:visibility="visible"
tools:listitem="@layout/movie_item_layout" />
<com.google.android.material.textview.MaterialTextView
android:id="@+id/errorView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:gravity="center"
android:visibility="gone"
tools:visibility="visible"
android:fontFamily="@font/roboto"
android:text="@string/error_msg"/>
</FrameLayout>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment