将自定义网格视图添加到滑动选项卡布局的不同选项卡

时间:2015-12-24 05:45:29

标签: android gridview tabs android-viewpager pagerslidingtabstrip

我参考本教程制作了Sliding Tab Layout的不同标签 - http://www.android4devs.com/2015/01/how-to-make-material-design-sliding-tabs.html

我想在Layout的所有选项卡中添加Custom GridView。我尝试使用适配器,但这不起作用。 请告诉我一个过程或指导我阅读教程。

swipe.xml

public class Swipe extends AppCompatActivity {
private ProgressBar progressBar;
private int progressStatus = 0;
ImageView img;
private Handler handler = new Handler();
    Toolbar toolbar;
    ViewPager pager;
    ViewPageAdapter adapter;
    SlidingTabLayout tabs;
    CharSequence Titles[]={"M","N","A","G","W","D"};
    int Numboftabs =6;
    private static int pos;

    @Override
   protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.swipe);
    Intent intent=getIntent();
    pos=intent.getExtras().getInt("position");
img=(ImageView)findViewById(R.id.pac);

    // Creating The Toolbar and setting it as the Toolbar for the activity

    toolbar = (Toolbar) findViewById(R.id.tool_bar);
setSupportActionBar(toolbar);


    // Creating The ViewPagerAdapter and Passing Fragment Manager, Titles fot the Tabs and Number Of Tabs.
    adapter =  new ViewPageAdapter(getSupportFragmentManager(),Titles,Numboftabs);

    // Assigning ViewPager View and setting the adapter
    pager = (ViewPager) findViewById(R.id.pager);
    pager.setAdapter(adapter);
pager.setCurrentItem(pos);


// Assiging the Sliding Tab Layout View
    tabs = (SlidingTabLayout) findViewById(R.id.tabs);
tabs.setDistributeEvenly(true); // To make the Tabs Fixed set this true, This makes the tabs Space Evenly in Available width

// Setting Custom Color for the Scroll bar indicator of the Tab View
tabs.setCustomTabColorizer(new SlidingTabLayout.TabColorizer() {
    @Override
    public int getIndicatorColor(int position) {
        return getResources().getColor(R.color.tabsScrollColor);
    }
});

    // Setting the ViewPager For the SlidingTabsLayout
    tabs.setViewPager(pager);

  }

Swipe.java

<?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 2"
    android:id="@+id/textView"
    android:layout_centerVertical="true"
    android:layout_centerHorizontal="true" />

tab1.xml

public class tab1 extends Fragment {
@Override
public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
    View v =inflater.inflate(R.layout.tab1,container,false);
    return v;
}
 }

这里有一个textview。我不想要文本View而是自定义GridView。

tab1.java

eq()

同样适用于所有其他标签。

0 个答案:

没有答案