猿问

如何使用TabLayout在Fragment中使用CardView行实现RecyclerView

如何使用TabLayout在Fragment中使用CardView行实现RecyclerView

我想在一个使用TabLayout的Activity中实现一个ListFragment,这样我就可以在不同的列表之间滑动。最后它应该成为一个预订应用程序,以便您可以选择不同的学科,并预订一个特定的时间段。然而到目前为止,我只实现了ListActivity或标签活动(android studio中的标准活动),但不是两者。如果有人可以提供帮助,我会很高兴的。标签式活动:

public class Diciplines extends AppCompatActivity {

    /**
     * The {@link android.support.v4.view.PagerAdapter} that will provide
     * fragments for each of the sections. We use a
     * {@link FragmentPagerAdapter} derivative, which will keep every
     * loaded fragment in memory. If this becomes too memory intensive, it
     * may be best to switch to a
     * {@link android.support.v4.app.FragmentStatePagerAdapter}.
     */
    private SectionsPagerAdapter mSectionsPagerAdapter;

    /**
     * The {@link ViewPager} that will host the section contents.
     */
    private ViewPager mViewPager;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_diciplines);

        Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
        setSupportActionBar(toolbar);
        // Create the adapter that will return a fragment for each of the three
        // primary sections of the activity.
        mSectionsPagerAdapter = new SectionsPagerAdapter(getSupportFragmentManager());

        // Set up the ViewPager with the sections adapter.
        mViewPager = (ViewPager) findViewById(R.id.container);
        mViewPager.setAdapter(mSectionsPagerAdapter);


        FloatingActionButton fab = (FloatingActionButton) findViewById(R.id.fab);
        fab.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
                Snackbar.make(view, "Replace with your own action", Snackbar.LENGTH_LONG)
                        .setAction("Action", null).show();
            }
        });

    }


慕姐8265434
浏览 718回答 1
1回答
随时随地看视频慕课网APP

相关分类

Android
我要回答