OSDN Git Service

DO NOT MERGE Fix error where androidx targets were being used.
authorAnthony Chen <ajchen@google.com>
Sat, 5 May 2018 01:04:58 +0000 (18:04 -0700)
committerAnthony Chen <ajchen@google.com>
Sat, 5 May 2018 01:09:56 +0000 (18:09 -0700)
SystemUI has not been migrated to androidx in pi-dev and should not be
referencing this new namespace.

Bug: 79270323
Test: build and deploy SystemUI
Change-Id: I44ee76137f0413e8abd1f6d6f8e322251a9dffa7

packages/SystemUI/src/com/android/systemui/statusbar/car/UserGridRecyclerView.java

index fc76f78..68e47f7 100644 (file)
@@ -28,6 +28,8 @@ import android.content.res.Resources;
 import android.graphics.Bitmap;
 import android.os.AsyncTask;
 import android.os.UserHandle;
+import android.support.v4.graphics.drawable.RoundedBitmapDrawable;
+import android.support.v4.graphics.drawable.RoundedBitmapDrawableFactory;
 import android.support.v7.widget.RecyclerView;
 import android.util.AttributeSet;
 import android.view.LayoutInflater;
@@ -38,8 +40,6 @@ import android.widget.TextView;
 
 import androidx.car.widget.PagedListView;
 
-import androidx.core.graphics.drawable.RoundedBitmapDrawable;
-import androidx.core.graphics.drawable.RoundedBitmapDrawableFactory;
 import com.android.internal.util.UserIcons;
 import com.android.settingslib.users.UserManagerHelper;
 import com.android.systemui.R;