我有什么:
我在API 22上使用最新的Android支持和设计库。我有一个名为 ProgressFragment 的片段,我 仅在首次安装我的应用时运行 如下:
mProgressFragment = new ProgressFragment();
getSupportFragmentManager().beginTransaction()
.replace(R.id.main_container, mProgressFragment, TAG_TASK_FRAGMENT)
.commit();
这是布局
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/progress_frag"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<include layout="@layout/toolbar"/>
<LinearLayout
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
>
<ProgressBar
android:id="@+id/build_lib_progressbar"
style="?android:attr/progressBarStyleLarge"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/progress_msg1"
android:layout_gravity="center"
android:textSize="22sp"
android:textColor="@color/text_primary"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/progress_msg2"
android:layout_gravity="center"
android:paddingTop="10dp"
android:textColor="@color/text_secondary"/>
</LinearLayout>
</LinearLayout>
此片段包含 AsyncTask 。完成后,它会被AsyncTask回调 onPostExecute()中的 MainActivity 中的另一个片段(称为 MainFragment )替换为:
getSupportFragmentManager().beginTransaction()
.replace(R.id.main_container, new MainFragment())
.commit();
这是 MainFragment 布局:
<android.support.design.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/main_coordinator_layout"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.v4.view.ViewPager
android:id="@+id/main_pager"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"/>
<android.support.design.widget.AppBarLayout
android:id="@+id/main_appbar_layout"
android:layout_height="wrap_content"
android:layout_width="match_parent">
<include layout="@layout/toolbar" />
<android.support.design.widget.TabLayout
android:id="@+id/main_tabs"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:tabMode="fixed"
app:tabGravity="fill"
app:tabIndicatorHeight="4dp"
app:tabTextColor="@color/white"/>
</android.support.design.widget.AppBarLayout>
修改
这是MainActivity的布局:
<android.support.v4.widget.DrawerLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:fab="http://schemas.android.com/apk/res-auto"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent">
<!-- Main content displayed here -->
<FrameLayout
android:id="@+id/main_container"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<!-- Navigation Drawer -->
<android.support.design.widget.NavigationView
android:id="@+id/navigation_view"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="start"
app:headerLayout="@layout/nav_drawer_header"
app:menu="@menu/nav_view_menu"
android:background="#ffffff"
app:itemTextColor="@color/text_tertiary"
app:itemIconTint="#8b8b8b"
/>
问题:
当ProgressFragment中的AsyncTask完成并被MainFragment替换时, TabLayout 视图不会显示标签:
我的应用程序在启动时有两条可能的路径。它要么:
添加ProgressFragment(如果是第一次运行) - &gt;然后由MainFragment
否则添加MainFragment(标签显示在这里很好)
两个片段替换都发生在MainActivity中。
问题涉及路径1
编辑2:
立即在MainActivity中调用重新创建()“修复”此问题。虽然我不称之为解决方案。稍后会再回来。
答案 0 :(得分:0)
更新:这是v22.2.1上的错误,已在新版本中解决
在此处发现问题:https://code.google.com/p/android/issues/detail?id=180462
简单的解决方法:
tabLayout.post(new Runnable() {
@Override
public void run() {
tabLayout.setupWithViewPager(viewPager);
}
});