簡體   English   中英

致命異常:無法膨脹 contentViewsjava.lang.IllegalArgumentException:setShowActionsInCompactView:動作 0 越界(最大 -1)

[英]Fatal exception : Couldn't inflate contentViewsjava.lang.IllegalArgumentException: setShowActionsInCompactView: action 0 out of bounds (max -1)

我使用測試實驗室來查找我的應用程序中的錯誤,我有一個但我找不到根源。 我認為它來自 just_audio 或 audio_service。

這是測試題:

android.app.RemoteServiceException: Bad notification(tag=null, id=1124) posted from package com.our_unseen_nature, crashing app(uid=10274, pid=22490): Couldn't inflate contentViewsjava.lang.IllegalArgumentException: setShowActionsInCompactView: action 0 out of bounds (max -1)
     FATAL EXCEPTION: main
Process: com.our_unseen_nature, PID: 22490
android.app.RemoteServiceException: Bad notification(tag=null, id=1124) posted from package com.our_unseen_nature, crashing app(uid=10274, pid=22490): Couldn't inflate contentViewsjava.lang.IllegalArgumentException: setShowActionsInCompactView: action 0 out of bounds (max -1)
    at android.app.ActivityThread$H.handleMessage(ActivityThread.java:2005)
    at android.os.Handler.dispatchMessage(Handler.java:106)
    at android.os.Looper.loop(Looper.java:223)
    at android.app.ActivityThread.main(ActivityThread.java:7664)
    at java.lang.reflect.Method.invoke(Native Method)
    at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:592)
    at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:947)

謝謝大家。

謝謝大家,我找到了解決方案,而且非常簡單。 發生錯誤是因為我沒有根據我選擇的控件正確選擇要在 Android 的緊湊視圖中顯示的操作。

 controls: [
     MediaControl. skipToPrevious,
     MediaControl.pause,
     MediaControl.skipToNext,
   ],
 
   // Which controls to show in Android's compact view
   //from the lists of controls selected.
   androidCompactActionIndices: const[0, 1, 2],

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM