我正在使用导航抽屉和SwipeRefreshLayout
作为主要内容,当用户选择导航抽屉中的菜单项时,我想将SwipeRefreshLayout
内的片段替换为另一个片段。
这就是我onNavigationItemSelected()
的样子:
// Handle navigation view item clicks here.
DrawerLayout drawer = (DrawerLayout) findViewById(R.id.drawer_layout);
drawer.closeDrawer(GravityCompat.START);
selectedNavItem = item.getItemId();
if(selectedNavItem == R.id.nav_files){
filesFragment = new FilesFragment();
fm = getSupportFragmentManager();
FragmentTransaction transaction = fm.beginTransaction();
transaction.replace(R.id.swipeLayout,filesFragment,"files");
transaction.commit();
} else if(selectedNavItem == R.id.nav_accounts){
accountsFragment = new AccountsFragment();
fm = getSupportFragmentManager();
FragmentTransaction transaction = fm.beginTransaction();
transaction.replace(R.id.swipeLayout,accountsFragment,"accounts");
transaction.commit();
}
return true;
但这永远不会奏效。单击导航抽屉中的项目时,片段将替换为空白屏幕。我的onCreate
方法也使用FragmentTransaction.replace()
,但这似乎工作正常。
我还尝试了FragmentTransaction.remove()
然后FragmentTransaction.add()
,但即便如此也不行。
编辑:布局文件:
导航抽屉的内容视图布局:
<android.support.v4.widget.SwipeRefreshLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:context="com.harshallele.cloudpool.MainActivity"
tools:showIn="@layout/app_bar_main"
android:id="@+id/swipeLayout">
</android.support.v4.widget.SwipeRefreshLayout>
这包含在另一个布局文件中,其中包含一个包含工具栏的CoordinatorLayout
。该文件又位于android.support.v4.widget.DrawerLayout
(基本上,这是Android Studio在添加活动时提供的导航抽屉活动)
FilesFragment
的布局:
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".fragments.FilesFragment">
<android.support.v7.widget.RecyclerView
android:id="@+id/fileListView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:scrollbars="vertical"
/>
<ProgressBar
android:id="@+id/itemsLoadingProgress"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom"
style="?android:attr/progressBarStyleHorizontal"
android:indeterminateOnly="true"
android:visibility="invisible"
/>
</FrameLayout>
AccountsFragment
的布局(这只是默认的空白片段,因为我尚未完成此操作):
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.harshallele.cloudpool.fragments.AccountsFragment">
<TextView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="@string/hello_blank_fragment" />
</FrameLayout>
编辑2:
AccountsFragment:
public class AccountsFragment extends Fragment {
public AccountsFragment() {
// Required empty public constructor
}
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
// Inflate the layout for this fragment
return inflater.inflate(R.layout.fragment_accounts, container, false);
}
}
答案 0 :(得分:0)
只需使用这些代码,我们就无法为您提供帮助。问题可能是:
FilesFragment
和AccountsFragment
没有以正确的方式初始化;
标识为Layout
的{{1}}可以swipeLayout
;
visibility = gone
和Layout
的{{1}}可以为空; 这只是您的代码无法正常运行的一些无限原因,因此请分享有关这两个FilesFragment
和相对AccountsFragment
的更多代码。