Android Fragment

Android DialogFragment Example

This article is about Android DialogFragment and how to work with it with the help of simple examples. Android DialogFragment A Dialog Fragment is a fragment that is used to make Dialogs that floats on Activity.   Android DialogFragment A DialogFragment is a fragment that is used to make Dialogs that floats on Activity. DialogFragment […]

Android DialogFragment Example Read More »

Android Working With Fragments

This tutorial is about how to create a fragment and include it in an activity with the help of an example. Create a fragment class To create a fragment, we have to define a fragment class, which extends the class Fragment and overrides the necessary methods. class FragmentOne : Fragment() {     override fun onCreateView(

Android Working With Fragments Read More »