Change to import android.app.AlertDialog instead of androidx.appcompat.app.AlertDialog.

There are two kind of AlertDialog(android.app.AlertDialog and androidx.appcompat.app.AlertDialog) in the app.
The UI of androidx.appcompat.app.AlertDialog looks abnormal. Seems because we didn't(can't) apply appcompat theme.
For fixing the abnormal UI of the dialog and being consistent the type of AlertDialog in the app, convert androidx.appcompat.app.AlertDialog to android.app.AlertDialog.

Screenshots:
  Old:
    https://screenshot.googleplex.com/96tKu6mHvyAdA9P.png
    https://screenshot.googleplex.com/9BFYQYs8i4J3qPp.png
    https://screenshot.googleplex.com/BCG2ukSCS6AsgLX.png
    https://screenshot.googleplex.com/4UD5xg6DHa6QFJp.png
  New:
    https://screenshot.googleplex.com/8KMuw8YQZkScmVS.png
    https://screenshot.googleplex.com/6bZAzZZZh7xgDyz.png
    https://screenshot.googleplex.com/6kfUNWe7cLiBpr9.png
    https://screenshot.googleplex.com/8AiemAFErJyr4Wt.png

Bug: 169024462
Change-Id: I0dd005ae708579cdae67425d4d9692743de31e2b
diff --git a/src/com/android/wallpaper/picker/CategorySelectorFragment.java b/src/com/android/wallpaper/picker/CategorySelectorFragment.java
index 887eb92..bb5d3d2 100644
--- a/src/com/android/wallpaper/picker/CategorySelectorFragment.java
+++ b/src/com/android/wallpaper/picker/CategorySelectorFragment.java
@@ -16,6 +16,7 @@
 package com.android.wallpaper.picker;
 
 import android.app.Activity;
+import android.app.AlertDialog;
 import android.content.Intent;
 import android.graphics.Point;
 import android.graphics.PorterDuff;
@@ -34,7 +35,6 @@
 
 import androidx.annotation.NonNull;
 import androidx.annotation.Nullable;
-import androidx.appcompat.app.AlertDialog;
 import androidx.cardview.widget.CardView;
 import androidx.fragment.app.Fragment;
 import androidx.recyclerview.widget.GridLayoutManager;