fragments Archives - Androhub

Twitter Show Timelines Banner

Android Twitter Show Timelines

In previous article we have leant integration of Twitter with our Android App. Today we are going to move further in Twitter Integration by showing different kind of Timelines. Twitter API provides Timelines for adding scrollable timelines anywhere in your app. NOTE : Please go through the previous tutorial about Android Twitter Integration to check how

Read More
Filterable List Banner

Android Adding Search Functionality to List

Today we are going to learn how to add search functionality to ListView, GridView and RecyclerView. In this tutorial you can filter search list by multiple items. Prerequisite: Material Tabs Tutorial ListView Tutorial GridView Tutorial RecyclerView Tutorial Radio Button Tutorial VIDEO DEMO 1. Create a new project in Android Studio by navigating to File ⇒ New ⇒ New Project

Read More
RadioButton List Banner

Android ListView RadioButton

In previous article  we learnt about how to use multiple choices in ListView. Today we are going to learn how to enable single choice/radio button in ListView, GridView and in RecyclerView using RadioButton, you’ll configure the ListView to display a radioButton next to each item. You can combine many components like TextView, RadioButton, ImageView, etc. and can

Read More
Toolbar Action Mode Banner

Android Contextual Action Mode Over Toolbar

You have seen Action Mode Menu in many apps like Whatsapp, Hike, Gmail, etc. while selecting multiple chats/emails on long press i.e. called Action Mode What is Action Mode? It represents a contextual mode of the user interface. Action modes can be used to provide alternative interaction modes and replace parts of the normal UI until

Read More
Fragment_Banner

Android Pass Data from Activity to Fragment

Earlier we had learn how to pass data from one activity to another and get back data from another activity. You can find both tutorials here : Android Intent. StartActivityForResult. Today we are going to learn how to pass data from Activity to Fragment. Before starting this tutorial just go through Fragments Tutorial if you

Read More
Material Design Tab Banner

Android Material Design Tabs Using TabLayout

In earlier we use ActionBar Tabs over ViewPager that we had done in earlier post that you can check here. But this ActionBar Tabs is deprecated in material design. So for that we need Material Design Tabs for implementing tabs in our app. We have seen Google Play Store, Whatsapp and many more are using

Read More