我的Android应用程序中有一个活动,我在框架布局中放置了一个RecyclerView Widget。框架布局充当父容器。
<RelativeLayout 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"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:paddingBottom="0dp"
android:paddingLeft="0dp"
android:paddingRight="0dp"
android:paddingTop="0dp"
tools:context="com.example.asad.comppecv2.AdminActivity">
<android.support.v7.widget.Toolbar
android:id="@+id/default_toolbar"
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:minHeight="?attr/actionBarSize"
android:background="?attr/colorPrimary"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
android:popupTheme="@style/ThemeOverlay.AppCompat.Light"
/>
<FrameLayout
android:id="@+id/container_body"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:layout_below="@+id/default_toolbar">
<android.support.v7.widget.RecyclerView
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_below="@id/default_toolbar"
android:id="@+id/my_recycler_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:clipToPadding="false"
android:paddingBottom="16dp"
android:paddingTop="16dp"
android:scrollbars="vertical" />
</FrameLayout>
</RelativeLayout>
这是我在我的活动中实例化RecyclerView的代码。
RecyclerView recyclerView = (RecyclerView) findViewById(R.id.my_recycler_view);
recyclerAdapter = new RecyclerAdapter(Participant_Data_List,getApplicationContext());
recyclerView.setAdapter(recyclerAdapter);
final LinearLayoutManager layoutManager = new LinearLayoutManager(this);
layoutManager.setOrientation(LinearLayoutManager.VERTICAL);
recyclerView.setLayoutManager(layoutManager);
此活动包含一个导航抽屉,我从中加载不同的片段。
我想要的是,当片段加载时,它会替换我的帧布局的内容。这是负责加载片段的代码。
private void initiateFragment(){
if (fragment != null) {
FragmentManager fm = getSupportFragmentManager();
FragmentTransaction ft = fm.beginTransaction();
ft.addToBackStack(null);
ft.replace(R.id.container_body, fragment);
ft.commit();
}
}
这是我活动的图片,当活动进行时,默认情况下会实例化RecyclerView。
以下是我要加载并替换回收站视图的片段图片。
但是当我加载这个片段而不是替换它时,它会重叠在Recycler视图上。
任何帮助将不胜感激!
更新#2
这是负责处理片段的代码块
public boolean onItemClick(View view, int position, IDrawerItem drawerItem) {
result.setSelection(position,false);
clearStack();
switch (position) {
case 1:
fragment = new admin_fragment_data_entry();
break;
case 2:
fragment = new admin_fragment_data_edit();
break;
case 3:
fragment = new admin_fragment_judge_data();
break;
case 4:
fragment = new admin_fragment_schedule();
break;
}
initiateFragment();
return false;
}
private void clearStack(){
int count = getSupportFragmentManager().getBackStackEntryCount();
while(count > 0){
getSupportFragmentManager().popBackStack();
count--;
}
答案 0 :(得分:2)
试试这个:
private void initiateFragment(){
if (fragment != null) {
FrameLayout frameLayout = (FrameLayout) findViewById(R.id.container_body);
frameLayout.removeAllViews();
FragmentManager fm = getSupportFragmentManager();
FragmentTransaction ft = fm.beginTransaction();
ft.addToBackStack(null);
ft.replace(R.id.container_body, fragment);
ft.commit();
}
}