AbsListView unregisterIRListener() is called

前端 未结 3 1490
执笔经年
执笔经年 2020-12-14 00:56

I\'m doing some debugging on an app that I\'m working on, and in my LogCat, I continue to get a message with tag \"AbsListView\" and message \"unregisterIRListner() is calle

相关标签:
3条回答
  • 2020-12-14 01:14

    in Android Studio to disable AbsListView unregisterIRListener() from Logcat You need to set new filter: check screen: Android Studio disable AbsListView unregisterIRListener()

    Just add in LogTag field: ^(?!(dalvikvm|AbsListView))

    0 讨论(0)
  • 2020-12-14 01:18

    I found such messages in my LogCat too. And found this answers - very usefull.

    I investigated a little bit based on the information above. It seems to be related to some Samsung devices respectively Samsung Android versions. I have a Samsung Note 10.1 edition 2014 with orig OS - here it happens. And I have a Samsung S2 with CM 10.2 - here I don't see the LogCat entries.

    But on both devices my app works fine.

    0 讨论(0)
  • 2020-12-14 01:22

    Looks like Google developers left debug call uncommented in source code. To avoid this unusable LogCat output I'm using following filter:

    tag:^(?!(dalvikvm|AbsListView))
    

    This filter cut out all taged: dalvikvm and AbsListView debug lines.

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