Text in PagerTabStrip not displayed upon 1st view(PagerTabStrip 中的文本未在第一个视图中显示)
问题描述
我有以下简单的设置:
swipeable.xml
这种奇怪行为的原因是什么?
解决方案 对我来说,这个问题发生在我更新了 support-v13
(或 v4
)之后,appcompat-v7
、recyclerview-v7
和 design
库到 23.0.0
.我想这是一个错误.降级到22.2.1
后,一切正常.
我建议等到他们发布这些库的新版本.
更新:此问题仅出现在 appcompat-v7
和 design
库中,现已在 23.1 中得到修复.0
Android 支持库的修订.
I have the following simple setup:
swipeable.xml
<LinearLayout
android:id="@+id/content_frame"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<include layout="@layout/toolbar" />
<android.support.v4.view.ViewPager
android:id="@+id/pager"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<android.support.v4.view.PagerTabStrip
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
</android.support.v4.view.ViewPager>
</LinearLayout>
Activity:
public class InfoActivity extends ActionBarActivity {
private static final int[][] KEYS = { { R.string.usage, R.string.usage_text },
{ R.string.data_protection, R.string.data_protection_text },
{ R.string.impressum, R.string.impressum_text } };
@Override
protected void onCreate( Bundle savedInstanceState ) {
setContentView( R.layout.swipeable );
super.onCreate( savedInstanceState );
ViewPager viewPager = (ViewPager)findViewById( R.id.pager );
viewPager.setAdapter( new SwipeAdapter( getSupportFragmentManager() ) );
}
class SwipeAdapter extends FragmentStatePagerAdapter {
public SwipeAdapter( FragmentManager fm ) {
super( fm );
}
@Override
public Fragment getItem( int position ) {
Bundle b = new Bundle();
b.putInt( "key", KEYS[ position ][ 1 ] );
return Fragment.instantiate( InfoActivity.this, InfoFragment.class.getName(), b );
}
@Override
public int getCount() {
return KEYS.length;
}
@Override
public CharSequence getPageTitle( int position ) {
return getString( KEYS[ position ][ 0 ] ).toUpperCase();
}
}
}
If I access the activity the 1st time, no pagerstrip-texts are shown. If I swipe or click the tab, the texts are displayed normally:
What could be the reason for such a strange behavior?
解决方案 For me this issue happened after I updated the support-v13
(or v4
), appcompat-v7
, recyclerview-v7
and design
libraries to 23.0.0
. I guess it is a bug. After downgrading it to 22.2.1
, it is working fine.
I would suggest to wait until they release new revision of these libraries.
Update: This issue is occurring only in appcompat-v7
and design
libs, which has now got fixed in 23.1.0
revision of Android Support Library.
这篇关于PagerTabStrip 中的文本未在第一个视图中显示的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:PagerTabStrip 中的文本未在第一个视图中显示
基础教程推荐
- android 应用程序已发布,但在 google play 中找不到 2022-01-01
- Android:对话框关闭而不调用关闭 2022-01-01
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01
- 如何在 UIImageView 中异步加载图像? 2022-01-01
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01