我正在创建一个需要有4个Sliding标签的应用。我找到了这个教程:http://www.android4devs.com/2015/01/how-to-make-material-design-sliding-tabs.html?m=1我遵循了它并且工作得很好,但它只显示了如何用2个标签做到这一点......有人在评论中问了这个问题,并回复说了一些给我的东西很多错误。如何使用4个标签而不是2个?
答案 0 :(得分:1)
1)在MainActivity中:
在第20行,调整
int Numboftabs =2;
获取所需的正确数量的标签。
2)重复步骤5&从教程中得出6,但不是制作Tab1& Tab2,制作Tab3 / 4,......
基本上,您需要为每个Tab添加一个java类文件+布局文件。所以我们走了:
使用以下内容制作tab_X.xml(X是数字/名称)
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceMedium"
android:text="You Are In Tab X"
android:id="@+id/textView"
android:layout_centerVertical="true"
android:layout_centerHorizontal="true" />
</RelativeLayout>
创建一个java类TabX(用选项卡号替换X,或者只用名称替换)
package com.android4devs.slidingtab;
import android.os.Bundle;
import android.support.annotation.Nullable;
import android.support.v4.app.Fragment;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
public class TabX extends Fragment {
@Override
public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
View v =inflater.inflate(R.layout.tab_X,container,false);
return v;
}
}
3)编辑ViewPagerAdapter类
例如,或3个标签而不是2,更改以下
//This method return the fragment for the every position in the View Pager
@Override
public Fragment getItem(int position) {
if(position == 0) // if the position is 0 we are returning the First tab
{
Tab1 tab1 = new Tab1();
return tab1;
}
else // As we are having 2 tabs if the position is now 0 it must be 1 so we are returning second tab
{
Tab2 tab2 = new Tab2();
return tab2;
}
}
要
//This method return the fragment for the every position in the View Pager
@Override
public Fragment getItem(int position) {
if(position == 0) // if the position is 0 we are returning the First tab
{
Tab1 tab1 = new Tab1();
return tab1;
}
else if(position == 1)
{
Tab2 tab2 = new Tab2();
return tab2;
}
else if(position == 2)
{
Tab3 tab3 = new Tab3();
return tab3;
}
else if { .... } // add more as desired.
// but make sure that you use "else" instead of "else if" for the last tab.
}
进行这些更改后,一切都应该正常工作。 我想提一下,提供/编辑的代码来自OP的问题中的教程。