更新设计支持库

时间:2015-07-21 13:09:06

标签: android android-layout android-support-library butterknife android-tablayout

昨天我将设计支持库从版本22.2.0更新到22.2.1,我面临着TabLayout的奇怪行为。 在版本22.2.0上,TabLayout工作正常,但现在它不会显示在我的碎片中,除非我旋转手机(然后它出现)。 我还没有改变我的代码,它只是停止了工作。

以下是摘录:

public class FriendFragment extends Fragment {
  @Bind(R.id.friendPager)
  ViewPager viewPager;
  @Bind(R.id.friendSlideTab)
  TabLayout tabLayout;
  ...
  @Override
  public void onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
   View v = inflater.inflate(R.layout.fragment_friend,container,false);
   ButterKnife.bind(this,v);

   return v;
}

@Override
public void onViewCreated(View view, @Nullable Bundle savedInstanceState) {
    super.onViewCreated(view, savedInstanceState);
    list.add(new SlideFragment(getString(R.string.my_friends), new MyFriendsFragment()));
    list.add(new SlideFragment(getString(R.string.add_friend), new SearchFriendFragment()));

    adapter = new FragmentSliderAdapter(list, getChildFragmentManager());
    viewPager.setAdapter(adapter);
    tabLayout.setupWithViewPager(viewPager);
}


<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:orientation="vertical">

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

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

    <android.support.v4.view.ViewPager xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/friendPager"
        android:layout_width="match_parent"
        android:layout_height="0px"
        android:layout_weight="1" />

</LinearLayout>

我使用ButterKnife,不要认为它会有所不同,因为在之前的版本中它正在使用它。

谢谢,任何帮助将不胜感激!

2 个答案:

答案 0 :(得分:7)

我提交了一个关于Google代码的错误,但是有一个问题的解决方法: 在我的onViewCreated方法中,我添加了:

if (ViewCompat.isLaidOut(tabLayout)) {
    tabLayout.setupWithViewPager(viewPager);
} else {
    tabLayout.addOnLayoutChangeListener(new View.OnLayoutChangeListener() {
        @Override
        public void onLayoutChange(...) {
            tabLayout.setupWithViewPager(viewPager);

            tabLayout.removeOnLayoutChangeListener(this);
        }
    });
}

答案 1 :(得分:2)

有同样的问题,并且认为我为什么工作的TabLayout突然爆发而疯狂。阅读Google Code上的问题,但发现已接受的解决方案不适用于非Lollipop设备。

但问题线程中提交的另一个解决方案适用于较旧的API: other solution

tabLayout.post(new Runnable() {
  @Override
   public void run() {
        tabLayout.setupWithViewPager(pager);
   }
});

希望它将在未来的库版本中修复。

编辑(2015年8月31日):我已经测试了支持设计库的新版本v23,它似乎已经修复(在Lollipop和KitKat上测试)。现在不需要生成一个线程:)