gpt4 book ai didi

android - 在 Android 中创建 Fragment 时何时设置 ImageBitmap?

转载 作者:行者123 更新时间:2023-11-30 02:35:14 25 4
gpt4 key购买 nike

我需要在创建 fragment 的过程中设置ImageBitmap。我不能在 onCreate 中执行此操作,因为 ImageView 尚未初始化。我在 Activity 中遇到了同样的问题,但后来我调用了 onWindowFocusChanged 方法并且它起作用了。但是Fragment中没有这个方法。我应该如何解决这个问题?我也试过了

@Override
public void onActivityCreated(Bundle savedInstanceState) {
super.onActivityCreated(savedInstanceState);
String imgPath = day.getPhotoPath();
if (imgPath != null) {
dayPhoto.setImageBitmap(PhotoUtils.decodeSampledBitmapFromFile(dayPhoto, imgPath));
}
}

但这也没有结果。 fragment 为空

@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
View rootView = inflater.inflate(R.layout.fragment_day, container, false);
setHasOptionsMenu(true);

dayPhoto = (ImageView) rootView.findViewById(R.id.dayImage);

return rootView;
}

最佳答案

所以我需要使用 GlobalLayout 来让它工作:

    ViewTreeObserver vto = rootView.getViewTreeObserver();
vto.addOnGlobalLayoutListener(new ViewTreeObserver.OnGlobalLayoutListener() {
@Override
public void onGlobalLayout() {
String imgPath = day.getPhotoPath();
if (imgPath != null) {
dayPhoto.setImageBitmap(PhotoUtils.decodeSampledBitmapFromFile(dayPhoto, imgPath));
ViewTreeObserver obs = rootView.getViewTreeObserver();
obs.removeGlobalOnLayoutListener(this);
}
}
});

关于android - 在 Android 中创建 Fragment 时何时设置 ImageBitmap?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26683091/

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