Posts

Showing posts from May, 2018

Android Firebase tutorials

Image
In this series we will learn using Firebase in Android app using Android Studio. We will: āœ“Create Android Studio Project āœ“Create Firebase Project and connect our Android Studio Project to that Firebase Project āœ“Store Images to FirebaseStorage manually āœ“Add data in FirebaseDatabase āœ“Retrieve these data(Title, Image, Description) in RecyclerView. To retrieve Images we will use Picasso library. āœ“Implement SearchView āœ“Handle RecyclerView Item Clicks, When an item is clicked it will be opened in new Activity. Source Code: http://devofandroid.blogspot.com/2018/05/firebase-recyclerview-retrieve-images.html

Firebase RecyclerView: Retrieve Images & Text, Implement SearchView, Handle Item Clicks

Image
In this tutorial we will learn using Firebase in Android app using Android Studio. We will: āœ“Create Android Studio Project āœ“Create Firebase Project and connect our Android Studio Project to that Firebase Project āœ“Store Images to FirebaseStorage manually āœ“Add data in FirebaseDatabase āœ“Retrieve these data(Title, Image, Description) in RecyclerView. To retrieve Images we will use Picasso library. āœ“Implement SearchView āœ“Handle RecyclerView Item Clicks, When an item is clicked it will be opened in new Activity. āœ“Sort Firebase Data displayed in RecyclerView. āœ“Save Image, Share Image & Text, Set Image as Wallpaper Step 1:  Create a new project   OR   Open your project Step 2: Choose Empty Activity & name it as "PostsListActivity" Step 3:  Create  menu.xml  under   res>menu   folder, to   search   item. Step 4: In menu bar click Tool s > Firebase . Firebase Assistent will open at right side Step 5: Scroll a...