Couldn't expand RemoteViews

后端 未结 5 1024
孤街浪徒
孤街浪徒 2021-02-12 14:34

I try to create a custom notification but getting the following exception:

FATAL EXCEPTION: main
android.app.RemoteServiceException: Bad notification posted from         


        
5条回答
  •  误落风尘
    2021-02-12 15:17

    Not all views can be used in RemoteViews. A RemoteViews object can support the following layout classes:

    FrameLayout

    LinearLayout

    RelativeLayout

    GridLayout

    AnalogClock

    Button

    Chronometer

    ImageButton

    ImageView

    ProgressBar

    TextView

    ViewFlipper

    ListView

    GridView

    StackView

    AdapterViewFlipper

    You can't use other layout classes like EditText or CustomViews.

提交回复
热议问题