Fixed my problem by using MainActivity.this (or YourActivityName.this)
AlertDialog.Builder alertDialogBuilder = new AlertDialog.Builder(MainActivity.this);
Make sure you already Theme.AppCompat and extending AppCompatActivity.
Fixed my problem by using MainActivity.this (or YourActivityName.this)
AlertDialog.Builder alertDialogBuilder = new AlertDialog.Builder(MainActivity.this);
Make sure you already Theme.AppCompat and extending AppCompatActivity.