gpt4 book ai didi

android - onGlobalLayout() 可以在布局 View 之前调用

转载 作者:行者123 更新时间:2023-12-01 14:40:42 24 4
gpt4 key购买 nike

我的 Firebase 崩溃报告显示以下代码在极少数设备上出现故障。我无法重现这个问题。谁能建议可能是什么问题?看来问题是 imageView.getWidth() 或 imageView.getHeight() 返回零。

以下代码在我的 fragment 中:

@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
View view = inflater.inflate(R.layout.fragment_category_list, container, false);

final ImageView imageView = (ImageView) view.findViewById(R.id.categoryBackgrndImageView);

// Set an observer that is called after the imageView is laid out
imageView.getViewTreeObserver().addOnGlobalLayoutListener(new ViewTreeObserver.OnGlobalLayoutListener() {

@Override
public void onGlobalLayout() {
//now we can retrieve the width and height
int width = imageView.getWidth();
int height = imageView.getHeight();

// etc. Code here removed. It gets an asset and creates a bitmap from the
// asset, sizing the bitmap based on the imageView width and height
}

布局如下:

<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:menu="menu_main,menu_categories">

<ImageView
android:id="@+id/categoryBackgrndImageView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scaleType="centerCrop" />

<technology.grandma.margriver.AutoGridRecylerView
android:id="@+id/categoryRecyclerView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:columnWidth="330dp"
android:scrollbars="vertical"
tools:listitem="@layout/list_item_category"/>

</FrameLayout>

我的互联网研究似乎证实了这个代码是正确的。你能看出这里有什么问题吗?

最佳答案

尝试使用 OnLayoutChangeListener 代替:

imageView.addOnLayoutChangeListener(new View.OnLayoutChangeListener() {
@Override
public void onLayoutChange(View v, int left, int top, int right, int bottom, int oldLeft, int oldTop, int oldRight, int oldBottom) {
int width = imageView.getMeasuredWidth();
int height = imageView.getMeasuredHeight();
imageView.removeOnLayoutChangeListener(this);
}
});

由于 OnGlobalLayoutListener 观察布局更改的所有层次结构,因此假设在层次结构中布置任何 View 时都可能触发它。此外,measuredWidthmeasuredHeight 更有可能在此时已知。

关于android - onGlobalLayout() 可以在布局 View 之前调用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39889532/

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