What is tab layout with frame layout android
Spoke Right
/ 20 Nov, 2023
The TabLayout and FrameLayout are used to create non sliding tabs. By adding the TabItem of android support design widget, we can implement the Items of TabLayout.
Android TabLayout is a Layout which is used to build horizontal tabs. In the tutorial, Android TabLayout with ViewPager we create the tabs of TabLayout using the newTab() method but the tabs are also be implemented using android.support.design.widget.TabItem in layout activity.
Example of TabLayout using FrameLayout:
In the below example, we are demonstrating the use and behavior of the TabLayout using FrameLayout and Fragment.
File: activity_main.xml:
In the activity_main.xml file, we will add the TabLayout and FrameLayout view components.
For all different tabs, we will create different fragment files. File: Home.java: package com.example.radioapp;
import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import app.com.sample.R;
public class Home extends Fragment {
public Home() {
// Required empty public constructor
}
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
return inflater.inflate(R.layout.fragment_home, container, false);
}
} |
File: fragment_home.xml: File: About.java: package com.example.radioapp;
import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import app.com.sample.R;
public class About extends Fragment {
public About() {
// Required empty public constructor
}
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
return inflater.inflate(R.layout.fragment_about, container, false);
}
} File: fragment_blog.xml: File: strings.xml: radioapp
Home fragment
About fragment
Blog fragment
|
|
|
0 comments