recyler视图问题

时间:2018-03-14 06:56:11

标签: android

我的回收者视图进入标签布局

enter image description here

我对Recylerview有疑问。我应该怎么做才能解决这个问题。 我是新的android开发人员。无法纠正这个问题。我有三个xml文件,一个用于工具栏,片段,主要活动。

我的片段 -

    public class viewPagerAdapter extends FragmentPagerAdapter {
    ArrayList<Fragment> fragments=new ArrayList<>();
    ArrayList<String> tabTitlles= new ArrayList<>();
    public void addFragments(Fragment fragments,String titles){
        this.fragments.add(fragments);
        this.tabTitlles.add(titles);
    }

  public viewPagerAdapter(FragmentManager fm){
      super(fm);
  }

    @Override
    public Fragment getItem(int position) {
        return fragments.get(position);
    }

    @Override
    public int getCount() {
        return fragments.size();
    }

    @Override
    public CharSequence getPageTitle(int position) {
        return tabTitlles.get(position);
    }

我的主要活动

public class MainActivity extends AppCompatActivity {
Toolbar toolbar;
TabLayout tabLayout;
ViewPager viewPager;
viewPagerAdapter vp;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        toolbar=(Toolbar)findViewById(R.id.toolBar);
        tabLayout = (TabLayout) findViewById(R.id.tablayout);
        viewPager = (ViewPager) findViewById(R.id.viewpager);
        toolbar.setTitleTextColor(0xFFFFFFFF);
tabLayout.setTabTextColors(getResources().getColor(R.color.inactive), getResources().getColor(R.color.active));
        setSupportActionBar(toolbar);
        getSupportActionBar().setTitle("Customer App");

        vp= new viewPagerAdapter(getSupportFragmentManager());
vp.addFragments(new HomeFragment(),"homr");
        vp.addFragments(new topfreeFragment(),"top");
        vp.addFragments(new TopPaidFragment(),"paid");
        viewPager.setAdapter(vp);
        tabLayout.setupWithViewPager(viewPager);
    }
}

我的pageadapter

    public class viewPagerAdapter extends FragmentPagerAdapter {
        ArrayList<Fragment> fragments=new ArrayList<>();
        ArrayList<String> tabTitlles= new ArrayList<>();
        public void addFragments(Fragment fragments,String titles){
            this.fragments.add(fragments);
            this.tabTitlles.add(titles);
        }

      public viewPagerAdapter(FragmentManager fm){
          super(fm);
      }

        @Override
        public Fragment getItem(int position) {
            return fragments.get(position);
        }

        @Override
        public int getCount() {
            return fragments.size();
        }

        @Override
        public CharSequence getPageTitle(int position) {
            return tabTitlles.get(position);
        }
    }
public class viewPagerAdapter extends FragmentPagerAdapter {
    ArrayList<Fragment> fragments=new ArrayList<>();
    ArrayList<String> tabTitlles= new ArrayList<>();
    public void addFragments(Fragment fragments,String titles){
        this.fragments.add(fragments);
        this.tabTitlles.add(titles);
    }

  public viewPagerAdapter(FragmentManager fm){
      super(fm);
  }

    @Override
    public Fragment getItem(int position) {
        return fragments.get(position);
    }

    @Override
    public int getCount() {
        return fragments.size();
    }

    @Override
    public CharSequence getPageTitle(int position) {
        return tabTitlles.get(position);
    }
}

我的片段Xml

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="test.fmtest.HomeFragment"
>

<!-- TODO: Update blank fragment layout -->

<android.support.v7.widget.RecyclerView

    android:id="@+id/lis"
    android:layout_width="match_parent"
    android:layout_height="match_parent"

    />

我的活动XML

    <?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="test.fmtest.MainActivity">

 <android.support.design.widget.AppBarLayout
     android:layout_height="wrap_content"
     android:layout_width="match_parent">
     <include
         android:layout_height="wrap_content"
         android:layout_width="match_parent"
         layout="@layout/toolbar_layout"></include>
     <android.support.design.widget.TabLayout
         android:layout_width="match_parent"
         android:layout_height="wrap_content"
         android:id="@+id/tablayout"
         app:tabMode="fixed"
         app:tabGravity="fill">

     </android.support.design.widget.TabLayout>
 </android.support.design.widget.AppBarLayout>
    <android.support.v4.view.ViewPager
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:id="@+id/viewpager"
        >

    </android.support.v4.view.ViewPager>



</android.support.constraint.ConstraintLayout>

1 个答案:

答案 0 :(得分:0)

使用相同的Constraintlayout尝试此操作(将此用于响应式UI)。

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
        xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:app="http://schemas.android.com/apk/res-auto"
        xmlns:tools="http://schemas.android.com/tools"
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <android.support.design.widget.AppBarLayout
                android:id="@+id/appBarLayout"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                >

                <include
                        layout="@layout/toolbar_layout"
                        android:layout_width="match_parent"
                        android:layout_height="wrap_content"
                        />

                <android.support.design.widget.TabLayout
                        android:id="@+id/tablayout"
                        android:layout_width="match_parent"
                        android:layout_height="?attr/actionBarSize"
                        app:tabGravity="fill"
                        app:tabMode="fixed"
                        />

        </android.support.design.widget.AppBarLayout>

        <android.support.v4.view.ViewPager
                android:id="@+id/viewpager"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                app:layout_constraintTop_toBottomOf="@+id/appBarLayout"
                />


</android.support.constraint.ConstraintLayout>
相关问题