更新设计支持库后缺少 TabLayout
TabLayout missing after updating Design Support Library
我昨天将设计支持库从版本 22.2.0 更新到 22.2.1,我遇到了 TabLayout
的奇怪行为。
在版本 22.2.0 上,TabLayout 工作得很好,但现在它不会出现在我的 frag 中,除非我旋转我的 phone(然后它出现)。
我没有更改我的代码,它只是停止工作了。
以下是片段:
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,认为它不会有任何区别,因为在以前的版本中它正在使用它。
谢谢,如有任何帮助,我们将不胜感激!
我在 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);
}
});
}
遇到了同样的问题,并且认为我很奇怪为什么工作中的 TabLayout 突然崩溃了。阅读 Google 代码上的问题,但发现公认的解决方案不适用于非 Lollipop 设备。
但是问题线程中提交的另一个解决方案适用于旧的 API:
other solution
tabLayout.post(new Runnable() {
@Override
public void run() {
tabLayout.setupWithViewPager(pager);
}
});
希望它能在库的未来版本中得到修复。
编辑(31/08/2015):我已经使用支持设计库的新 v23 进行了测试,它似乎已被修复(在 Lollipop 和 KitKat 上测试)。现在不需要生成线程 :)
我昨天将设计支持库从版本 22.2.0 更新到 22.2.1,我遇到了 TabLayout
的奇怪行为。
在版本 22.2.0 上,TabLayout 工作得很好,但现在它不会出现在我的 frag 中,除非我旋转我的 phone(然后它出现)。
我没有更改我的代码,它只是停止工作了。
以下是片段:
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,认为它不会有任何区别,因为在以前的版本中它正在使用它。
谢谢,如有任何帮助,我们将不胜感激!
我在 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);
}
});
}
遇到了同样的问题,并且认为我很奇怪为什么工作中的 TabLayout 突然崩溃了。阅读 Google 代码上的问题,但发现公认的解决方案不适用于非 Lollipop 设备。
但是问题线程中提交的另一个解决方案适用于旧的 API: other solution
tabLayout.post(new Runnable() {
@Override
public void run() {
tabLayout.setupWithViewPager(pager);
}
});
希望它能在库的未来版本中得到修复。
编辑(31/08/2015):我已经使用支持设计库的新 v23 进行了测试,它似乎已被修复(在 Lollipop 和 KitKat 上测试)。现在不需要生成线程 :)