Before this I used a DialogBuilder to create AlertDialog like this
DialogBuilder
AlertDialog
AlertDialog.Builder builder = new AlertDialog.Builder(context); ...
Just found the solution. I should import
import android.support.v7.app.AlertDialog;
and then AppCompatDialog dialog = builder.create() will work.
AppCompatDialog dialog = builder.create()