gpt4 book ai didi

android - fragment 转换可视化清除数据(android)

转载 作者:行者123 更新时间:2023-11-30 00:26:27 30 4
gpt4 key购买 nike

假设我有一个带有 ListView 或带有图像的 GridView 的 fragment 。当我使用编程方式或后退按钮进行转换时,我看到这些 ListView / GridView 数据在动画之间以视觉方式被清除。其他控件如 textviews 没有这个问题。这种行为会产生不良的视觉效果。

以下是我用于 fragment 转换的代码。

有没有办法减少这种丑陋的视觉冲击。

        String ttag = fragment
.getClass().toString();
Fragment tempF = fragmentManager.findFragmentByTag(ttag);

if (tempF != null && tempF.isVisible())
return;
Bundle args = new Bundle();
args.putParcelable(Utils.FRAGMENT_INPUT_KEY, fragment.getInput());
fragment.setArguments(args);

FragmentTransaction fragmentTransaction = fragmentManager
.beginTransaction();

fragmentTransaction.setAllowOptimization(true);
fragmentTransaction.setCustomAnimations(R.anim.fragment_enter,
R.anim.fragment_exit, R.anim.fragment_leftenter,
R.anim.fragment_leftexit);
fragmentTransaction.replace(R.id.fragment, fragment, ttag);

fragmentTransaction.addToBackStack(null);
fragmentTransaction.commit();
}

以下 fragment 具有顶级 View 分页器,它使用带图像的 GridView 加载 fragment 。在子级 fragment 上清除 GridView 时会出现视觉问题。顶级 fragment 没有这样的问题。

Top Fragment 生命周期方法与选项卡的 viewpager。

ViewPager viewPager;
@Override
public void onActivityCreated(Bundle bundle) {
super.onActivityCreated(bundle);

activity = getActivity();
resource = activity.getResources();
view = getView();

viewPager = (ViewPager) view.findViewById(R.id.viewpager);
// some other setup

}

@Override
public void onStop() {
super.onStop();
}


@Override
public void onDetach() {
super.onDetach();

try {
Field childFragmentManager = Fragment.class.getDeclaredField("mChildFragmentManager");
childFragmentManager.setAccessible(true);
childFragmentManager.set(this, null);

} catch (Exception e) {

}

try {

if(viewPager != null) {
viewPager.setAdapter(null);
viewPager.removeAllViews();
}

} catch (Exception e) {

int x = 0;
}
}

带有加载图像 GridView 的子选项卡级 fragment ,在按下后退按钮时被清除。

GridView list;
GridViewIncompleteAdapter adapter;
ArrayList<String> puzzelList = null;
ArrayList<PuzzelFileData> imagePuzzelList = null;
Override
public void onActivityCreated(Bundle bundle) {
super.onActivityCreated(bundle);

activity = getActivity();
resource = activity.getResources();
View view = getView();

puzzelList = new ArrayList<String>();
imagePuzzelList = new ArrayList<PuzzelFileData>();

path = Utils.getAppFilePath(activity);
path = path + Utils.INC_FOLDER;

list = (GridView) view.findViewById(R.id.listIncomplete);
Point p = Utils.getDisplaySize(activity);
}

@Override
public void onStop() {
super.onStop();

if(task != null)
task.cancel(true);

if(handler != null && runnable != null)
handler.removeCallbacks(runnable);

}

@Override
public void onDestroy(){
super.onDestroy();

if(puzzelList != null)
puzzelList.clear();

if(imagePuzzelList != null)
imagePuzzelList.clear();

if(adapter != null)
adapter.disponse();
}

带有标签 View 的顶部布局,

<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/frag"
android:orientation="vertical">
<FrameLayout
android:id="@android:id/tabcontent"
android:layout_width="match_parent"
android:layout_height="0dip"
android:layout_weight="1"/>
<android.support.v4.app.FragmentTabHost
android:id="@+id/tabhost"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
</LinearLayout>

带有 GridView 的布局,

<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"
tools:context=".MainActivity"
tools:ignore="MergeRootFrame" >

<TextView
android:id="@+id/txt_inc_nodata"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_marginTop="20dp"
android:text="@string/LOADING_DATA"
android:textColor="@color/subtitle_text_color"
android:textSize="@dimen/text_size_smallmedium"
android:textStyle="bold" />

<GridView
android:id="@+id/listIncomplete"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:layout_marginTop="1dp"
android:gravity="center"
android:numColumns="3" />

</RelativeLayout>

最佳答案

根据您的代码,您正在自行清除 onDestroy 中的列表:

@Override 
public void onDestroy() {
super.onDestroy();

if(puzzelList != null)
puzzelList.clear();

if(imagePuzzelList != null)
imagePuzzelList.clear();

if(adapter != null)
adapter.disponse();
}

此外,您正在替换您的 fragment ,因此在这种情况下应该调用onDestroy。请记住生命周期流程,在您的情况下将是:

Fragment1.onPause();
Fragment1.onStop();
Fragment1.onDestroy();
Fragment2.onCreate();
Fragment2.onResume();

为了更好地理解您可以正确显示位图,我建议您查看 Handling Bitmaps .

关于android - fragment 转换可视化清除数据(android),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45279188/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com