Android: Can I ignore the errors “ Parent view is not a TextView ” and “ sendUserActionEvent() mView == null ”?

后端 未结 1 443
温柔的废话
温柔的废话 2021-02-18 13:29

In my Android app, I am constantly getting the following two errors in my logcat:

06-02 20:33:16.070: E/MoreInfoHPW_ViewGroup(13983): Parent view is not a TextVi         


        
1条回答
  •  一生所求
    2021-02-18 14:14

    Yes you can ignore, it's a known issue with Samsung models. If it bothers you, maybe you can replace

    context.startActivity(....); 
    

    with:

    startActivity(new Intent(....));
    

    and see if it works for you too, as indicated in this answer: https://stackoverflow.com/a/24592235/3202370

    I hope it helps.

    0 讨论(0)
提交回复
热议问题