Cannot create AlertDialog: AppCompat error

前端 未结 2 1645
长发绾君心
长发绾君心 2020-12-12 06:06

I am trying to create an AlertDialog like this:

counterButton.setOnLongClickListener(new View.OnLongClickListener() {
    @Override
    public boolean onLong         


        
2条回答
  •  刺人心
    刺人心 (楼主)
    2020-12-12 06:36

    Since your theme is related to your Activity, you must pass it as the context to AlertDialog.Builder - getApplicationContext() has no theme attached to it which is why you are getting an error.

提交回复
热议问题