Android一个标签TabLayout,全宽不起作用

前端之家收集整理的这篇文章主要介绍了Android一个标签TabLayout,全宽不起作用前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试在TabLayout中添加一个带有全宽指示符的选项卡.但是使用谷歌TabLayout我得到了这个结果

之后我确实使用了与https://github.com/astuetz/PagerSlidingTabStrip相同的代码
我得到了正确的结果

以前有人遇到过同样的问题吗?以及如何解决这个问题?

我确实使用了简单的代码只是活动保持

  1. <android.support.design.widget.AppBarLayout
  2. android:layout_height="wrap_content"
  3. android:layout_width="match_parent"
  4. android:id="@+id/swipeAppBarLayout"
  5. >
  6.  
  7. <android.support.design.widget.TabLayout
  8. android:id="@+id/swipeTabLayout"
  9. android:layout_width="match_parent"
  10. app:tabMaxWidth="0dp"
  11. android:layout_height="30dp"
  12. app:tabIndicatorHeight="4dp"
  13. />
  14. </android.support.design.widget.AppBarLayout>
  15.  
  16. <android.support.v4.view.ViewPager xmlns:android="http://schemas.android.com/apk/res/android"
  17. android:id="@+id/swipePager"
  18. android:background="@android:color/transparent"
  19. android:layout_width="match_parent"
  20. android:layout_height="match_parent"
  21. app:layout_behavior="@string/appbar_scrolling_view_behavior" />

and the adapter

  1. public class StreamNavigationPagerAdapter extends FragmentStatePagerAdapter {
  2.  
  3. private Context mContext;
  4.  
  5. public StreamNavigationPagerAdapter(FragmentManager fm,Context con) {
  6. super(fm);
  7. mContext = con;
  8. }
  9.  
  10.  
  11. @Override
  12. public Fragment getItem(int position) {
  13. return getNewsFragment();
  14. }
  15.  
  16. private Fragment getNewsFragment() {
  17. Fragment fragment = new StreamNewsFragment();
  18. return fragment;
  19. }
  20.  
  21. @Override
  22. public int getCount() {
  23. return 1;
  24. }
  25.  
  26. @Override
  27. public CharSequence getPageTitle(int position) {
  28. return "NEWS";
  29. }
  30.  
  31. }
  32.  
  33. the activity contain just
  34.  
  35. @Override
  36. protected void onCreate(Bundle savedInstanceState) {
  37. super.onCreate(savedInstanceState);
  38. setContentView(R.layout.activity_main);
  39. ButterKnife.inject(this);
  40.  
  41. swipePager.setAdapter(new StreamNavigationPagerAdapter(getSupportFragmentManager(),this));
  42. swipeTabLayout.setupWithViewPager(swipePager);
  43. // swipeTabLayout.setViewPager(swipePager);
  44. }

解决方法

我遇到了完全相同的问题,并设法通过将tabMaxWidth属性设置为高值而不是(例如500dp)而不是0dp来解决它,如某些答案中所建议的那样.
  1. <android.support.design.widget.TabLayout
  2. android:id="@+id/tabs"
  3. android:layout_width="match_parent"
  4. android:layout_height="wrap_content"
  5. app:tabMaxWidth="500dp" />

猜你在找的Android相关文章