ViewPager 片段中的 TextView 使应用程序随机崩溃 NullPointerException: Attempt to invoke virtual method void View.sendAccessibilityEventUnchec

TextView in ViewPager fragments randomly crashes the app NullPointerException: Attempt to invoke virtual method void View.sendAccessibilityEventUnchec

总结

  1. 首先我描述上下文我正在尝试做什么

  2. 其次,我向您解释我在哪些情况下会遇到错误以及它是什么(它是当前行为

  3. 第三,我向你解释预期的行为

  4. 那我给你解释一下如何重现bug

  5. 最后,我向您展示了可能导致错误的最小且可执行的代码


上下文

我正在使用 AutoScrollTextView AutoScrollTextView AutoScrollTextView https://github.com/ronghao/AutoScrollTextView 中其他人可用的小部件。 AutoScrollTextView 是一个 TextView 可以自动自动垂直滚动,而且如果文本太长,可以水平自动滚动。因此 AutoScrollTextView 可以包含至少一个要自动滚动的文本(参见 GitHub 存储库中的插图)。

当前行为:错误

  1. 如果我在主 activity 中使用一个 AutoScrollTextView,我看不到任何错误。如果我在mainactivity的fragment中使用,我想也是这样(我没测试)
  2. 如果我在 ViewPager 的至少两个片段中的每个片段中使用一个 AutoScrollTextView(同一片段 class 的两个实例用于 Viewpager) ,每个 AutoScrollTextView 至少自动滚动一个文本,应用程序崩溃并出现以下错误(注意: 这个 ViewPager 属于主要 activity):

E/AndroidRuntime: FATAL EXCEPTION: main Process: com.example.myapplication, PID: 2814 java.lang.NullPointerException: Attempt to invoke virtual method 'void android.view.View.sendAccessibilityEventUnchecked(android.view.accessibility.AccessibilityEvent)' on a null object reference at android.view.ViewRootImpl$SendWindowContentChangedAccessibilityEvent.run(ViewRootImpl.java:9304) at android.os.Handler.handleCallback(Handler.java:789) at android.os.Handler.dispatchMessage(Handler.java:98) at android.os.Looper.loop(Looper.java:164) at android.app.ActivityThread.main(ActivityThread.java:6944) at java.lang.reflect.Method.invoke(Native Method) at com.android.internal.os.Zygote$MethodAndArgsCaller.run(Zygote.java:327) at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1374)

但是错误很难触发:

  1. 有时,主要activity的片段一开始就会触发
  2. 有时,在主片段触发之前会有随机延迟activity
  3. 有时,它可能没有被触发(或者我在它触发之前关闭了应用程序)

如您所见,没有任何迹象表明导致此崩溃的行。

我为调试所做的工作

  1. 我已经获取了库,并隔离了导致此错误的最小部分。

  2. 我已经设置了最小的可执行应用程序,只有主要 activity、ViewPager 和片段(同一片段的 2 个实例 class用于 Viewpager).

  3. 我已经使用库的独立部分设置了这个最小的可执行应用程序。您将在下面找到源代码(即使有 "many" 个文件,每个文件都已被最小化并且仅包含严格的最少行以使您能够重现错误)。另外:根据我给你的资源,你看不到文本滚动(根本没有文本)是完全正常的。这是因为我已经完全隔离了 API 触发错误的部分,并且滚动文本与此错误无关,所以它不是我隔离源的一部分。

  4. 我尝试使用 Android 的 Timer 而不是 Handler 但错误仍然发生。

  5. MarqueeTextView::scrollTo(currentScrollPos, 0); 似乎触发了这个错误。

预期行为

正常情况下,应用程序当然不应该崩溃。换句话说,不应该有任何触发错误(尤其是我上面引用的错误)。使用我提供的资源,您看不到文本滚动(根本看不到文本)是完全正常的。这是因为我已经完全隔离了 API 触发错误的部分,并且滚动文本与此错误无关,所以它不是我隔离源的一部分。

如何重现此错误

下面,我为您提供您需要的所有最小和可执行源(即使有 "many" 个文件,每个文件都已最小化并且仅包含严格的最小行,以便您能够重现错误)。在创建了相应的文件并在其中 copy/paste 这些源代码后,运行 这个最小且可执行的应用程序多次。即使每个 运行 都会显示或不会显示错误,通常您最多会在 5 运行 秒后至少看到一次。您可以使用智能手机或 Android Studio 的模拟器来测试此应用程序(但我没有在模拟器上进行测试)。

注意: 使用我提供的资源,您看不到文本滚动(根本看不到文本)是完全正常的。这是因为我已经完全隔离了 API 触发错误的部分,并且滚动文本与此错误无关,所以它不是我隔离源的一部分。

我的问题

你能告诉我为什么会出现这个错误(我无法调试它)以及为什么它看起来如此随机吗?我该如何更正它?

最小且可执行的应用程序源

简短介绍

  1. 首先给大家提供库中隔离部分的源码

  2. 然后,我会给你ViewPager等app的源码

  3. 即使有 "many" 个文件,每个文件都已被最小化并且只包含严格的最少行以使您能够重现错误。使用我提供的资源,您看不到文本滚动(根本看不到文本)是完全正常的。这是因为我已经完全隔离了 API 触发错误的部分,并且滚动文本与此错误无关,所以它不是我隔离源的一部分。

触发错误的库的隔离部分

com.example.myapplication.libs.autoscrolling_text_view.MarqueeTextView.java

package com.example.myapplication.libs.autoscrolling_text_view;

import android.content.Context;

import androidx.appcompat.widget.AppCompatTextView;

import java.util.TimerTask;
import java.util.concurrent.Executors;
import java.util.concurrent.ScheduledExecutorService;
import java.util.concurrent.TimeUnit;

/**
 *
 * @author haohao on 2017/9/21 下午 02:33
 * @version v1.0
 */
public class MarqueeTextView extends AppCompatTextView {

    private int currentScrollPos = 0;

    ScheduledExecutorService pool = Executors.newScheduledThreadPool(1);

    final TimerTask task = new TimerTask() {
        @Override
        public void run() {
            currentScrollPos += 1;
            scrollTo(currentScrollPos, 0);
        }
    };



public MarqueeTextView(Context context) {
        super(context);
    }

    public void postStartScroll(int delay) {  // Bug when reset AND then scheduleAtFixedRate are executed
        int speed = 6;
        pool.scheduleAtFixedRate(task, delay, speed, TimeUnit.MILLISECONDS);
    }
}

com.example.myapplication.libs.autoscrolling_text_view.MarqueeSwitcher.java

package com.example.myapplication.libs.autoscrolling_text_view;

import android.content.Context;
import android.util.AttributeSet;
import android.widget.RelativeLayout;
import android.widget.ViewSwitcher;

/**
 * MarqueeSwitcher {@link android.widget.TextSwitcher} t
 *
 * @author haohao on 2017/9/21 下午 03:57
 * @version v1.0
 */
public class MarqueeSwitcher extends ViewSwitcher {

    /**
     * Creates a new empty TextSwitcher for the given context and with the
     * specified set attributes.
     *
     * @param context the application environment
     * @param attrs a collection of attributes
     */
    public MarqueeSwitcher(Context context, AttributeSet attrs) {
        super(context, attrs);
    }

    /**
     * Sets the text of the next view and switches to the next view. This can
     * be used to animate the old text out and animate the next text in.
     *
     */
    public void setText() {
        final MarqueeTextView t = getNextView();
        t.postStartScroll(1500);  // BUG HERE (Cf. MarqueeTextView::postStartScroll)
    }

    public MarqueeTextView getCurrentView() {
        return (MarqueeTextView) ((RelativeLayout) super.getCurrentView()).getChildAt(0);
    }

    public MarqueeTextView getNextView() {
        return (MarqueeTextView) ((RelativeLayout) super.getNextView()).getChildAt(0);
    }
}

com.example.myapplication.libs.autoscrolling_text_view.BaseScrollTextView.java

package com.example.myapplication.libs.autoscrolling_text_view;

import android.content.Context;
import android.os.Handler;
import android.os.Message;
import android.util.AttributeSet;
import android.view.View;
import android.widget.RelativeLayout;
import android.widget.ViewSwitcher;

import java.lang.ref.WeakReference;
import java.util.ArrayList;
import java.util.List;

/**
 * 父类:上下滚动
 *
 * @author haohao on 2017/9/21 下午 02:28
 * @version v1.0
 */
public class BaseScrollTextView extends MarqueeSwitcher
        implements ViewSwitcher.ViewFactory {

    private static final int FLAG_START_AUTO_SCROLL = 1000;
    private ArrayList<String> textList;
    private Handler handler;

    public BaseScrollTextView(Context context, AttributeSet attrs) {
        super(context, attrs);
        init();
    }

    private void init() {
        textList = new ArrayList<>();
        handler = new MyHandler(this);
        setFactory(this);
    }

    /**
     * 设置数据源
     */
    public void setTextList(List<String> titles) {
        textList.addAll(titles);
    }

    /**
     * 开始轮播
     */
    public void startAutoScroll() {
        handler.sendEmptyMessage(FLAG_START_AUTO_SCROLL);
    }

    @Override
    public View makeView() {
        RelativeLayout layout = new RelativeLayout(getContext());
        MarqueeTextView textView = new MarqueeTextView(getContext());
        layout.addView(textView);
        return layout;
    }

    private static class MyHandler extends Handler {
        WeakReference<BaseScrollTextView> textViewWeakReference;

        private MyHandler(BaseScrollTextView autoScrollTextView) {
            textViewWeakReference = new WeakReference<>(autoScrollTextView);
        }

        @Override
        public void handleMessage(Message msg) {
            super.handleMessage(msg);
            if (null != textViewWeakReference) {
                BaseScrollTextView autoScrollTextView = textViewWeakReference.get();
                if (msg.what == FLAG_START_AUTO_SCROLL) {
                    if (autoScrollTextView.textList.size() > 0) {
                        autoScrollTextView.setText();
                    }
                }
            }
        }
    }
}

res.anim.push_up_in.xml

<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android"
    android:shareInterpolator="false"
    android:zAdjustment="top">
    <translate
        android:duration="400"
        android:fromYDelta="100%"
        android:interpolator="@android:anim/accelerate_interpolator"
        android:toYDelta="0"/>
    <alpha
        android:duration="400"
        android:fromAlpha="0.0"
        android:toAlpha="1.0"/>
</set>

res.anim.push_up_out.xml

<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android"
    android:shareInterpolator="false"
    android:zAdjustment="bottom">
    <translate
        android:duration="400"
        android:fromYDelta="0"
        android:interpolator="@android:anim/accelerate_interpolator"
        android:toYDelta="-100%"/>

    <alpha
        android:duration="400"
        android:fromAlpha="1.0"
        android:toAlpha="0.0"/>
</set>

应用程序(一个 activity,一个片段在 activity 的 Viewpager 中使用了两次;片段使用 AutoScrollTextView 随机触发错误)

应用程序级 Gradle

apply plugin: 'com.android.application'

android {
    compileSdkVersion 28


    defaultConfig {
        applicationId "com.example.myapplication"
        minSdkVersion 22
        targetSdkVersion 28
        versionCode 1
        versionName "1.0"

        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
    }

    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
        }
    }

}

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])

    implementation("com.google.guava:guava:28.2-android")
    implementation 'androidx.appcompat:appcompat:1.1.0'
    implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'androidx.test.ext:junit:1.1.1'
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
}

com.example.myapplication.MainActivity.java

package com.example.myapplication;

import android.os.Bundle;

import androidx.annotation.NonNull;
import androidx.appcompat.app.AppCompatActivity;
import androidx.fragment.app.Fragment;
import androidx.fragment.app.FragmentStatePagerAdapter;
import androidx.viewpager.widget.ViewPager;

import com.google.common.collect.Lists;

import java.util.List;

public class MainActivity extends AppCompatActivity {
    private List<FragmentHomeSlide> slides;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        final FragmentHomeSlide slide_1 = new FragmentHomeSlide();
        final FragmentHomeSlide slide_2 = new FragmentHomeSlide();
        slides = Lists.newArrayList(slide_1, slide_2);

        final ViewPager view_pager = findViewById(R.id.view_pager);
        assert getFragmentManager() != null;
        view_pager.setAdapter(new FragmentStatePagerAdapter(getSupportFragmentManager(), FragmentStatePagerAdapter.BEHAVIOR_RESUME_ONLY_CURRENT_FRAGMENT) {
            @Override
            @NonNull
            public Fragment getItem(final int position) {
                return slides.get(position);
            }

            @Override
            public int getCount() {
                return slides.size();
            }
        });
    }
}

com.example.myapplication.FragmentHomeSlide.java

package com.example.myapplication;

import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;

import androidx.annotation.Nullable;
import androidx.fragment.app.Fragment;

import com.example.myapplication.libs.autoscrolling_text_view.BaseScrollTextView;

import java.util.ArrayList;
import java.util.Arrays;

public class FragmentHomeSlide extends Fragment {
    @Override
    public View onCreateView(final LayoutInflater inflater, @Nullable final ViewGroup container, @Nullable final Bundle savedInstanceState) {
        View inflated = inflater.inflate(R.layout.home_slide, container, false);
        setWidgets(inflated);
        return inflated;
    }

    private void setWidgets(View inflated) {
        String[] text_presentation = new String[1];
        text_presentation[0] = "Foo";

        BaseScrollTextView baseScrollTextView = inflated.findViewById(R.id.main_autoscroll_text1);
        baseScrollTextView.setTextList(new ArrayList<>(Arrays.asList(text_presentation)));
        baseScrollTextView.startAutoScroll();
    }
}

res.layout.activity_main.xml

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout 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"
    tools:context=".MainActivity">

    <androidx.viewpager.widget.ViewPager
        android:id="@+id/view_pager"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        />

</androidx.constraintlayout.widget.ConstraintLayout>

res.layout.home_slide.xml

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <com.example.myapplication.libs.autoscrolling_text_view.BaseScrollTextView
        android:id="@+id/main_autoscroll_text1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        />

</androidx.constraintlayout.widget.ConstraintLayout>

我想我已经通过在方法MarqueeTextView::TimerTask::run中使用runOnUiThread解决了这个问题。自此更改以来,我没有看到任何错误。但是我仍然不知道为什么会出现这个错误,以及为什么这个修改解决了它(我知道在这种情况下使用runOnUiThread更好,因为使用了scrollTo,但我不知道是什么此调用与错误之间的关系)。 如果有人可以评论我的回答,请向我解释:-) .

您可以将更改(如下所示)与我问题中的原始文件进行比较。

所以我所做的唯一更改包含在以下文件中 (com.example.myapplication.libs.autoscrolling_text_view.MarqueeTextView):

package com.example.myapplication.libs.autoscrolling_text_view;

import android.content.Context;

import androidx.appcompat.app.AppCompatActivity;
import androidx.appcompat.widget.AppCompatTextView;

import java.util.TimerTask;
import java.util.concurrent.Executors;
import java.util.concurrent.ScheduledExecutorService;
import java.util.concurrent.TimeUnit;

/**
 *
 * @author haohao on 2017/9/21 下午 02:33
 * @version v1.0
 */
public class MarqueeTextView extends AppCompatTextView {

    private int currentScrollPos = 0;

    ScheduledExecutorService pool = Executors.newScheduledThreadPool(1);

    final TimerTask task = new TimerTask() {
        @Override
        public void run() {
            ((AppCompatActivity) getContext()).runOnUiThread(new Runnable() {
                @Override
                public void run() {
                    currentScrollPos += 1;
                    scrollTo(currentScrollPos, 0);
                }
            });
        }
    };

    public MarqueeTextView(Context context) {
        super(context);
    }

    public void postStartScroll(int delay) {  // Bug when reset AND then scheduleAtFixedRate are executed
        int speed = 6;
        pool.scheduleAtFixedRate(task, delay, speed, TimeUnit.MILLISECONDS);
    }
}