mirror of
https://github.com/LawnchairLauncher/lawnchair.git
synced 2026-02-27 15:26:58 +00:00
85 lines
3.1 KiB
Java
85 lines
3.1 KiB
Java
package com.android.launcher3.model;
|
|
|
|
import android.content.ComponentName;
|
|
import android.content.pm.ActivityInfo;
|
|
import android.content.pm.PackageManager;
|
|
import android.content.pm.ResolveInfo;
|
|
|
|
import com.android.launcher3.InvariantDeviceProfile;
|
|
import com.android.launcher3.LauncherAppState;
|
|
import com.android.launcher3.LauncherAppWidgetProviderInfo;
|
|
import com.android.launcher3.Utilities;
|
|
import com.android.launcher3.compat.AppWidgetManagerCompat;
|
|
import com.android.launcher3.compat.UserHandleCompat;
|
|
import com.android.launcher3.util.ComponentKey;
|
|
|
|
import java.text.Collator;
|
|
|
|
/**
|
|
* An wrapper over various items displayed in a widget picker,
|
|
* {@link LauncherAppWidgetProviderInfo} & {@link ActivityInfo}. This provides easier access to
|
|
* common attributes like spanX and spanY.
|
|
*/
|
|
public class WidgetItem extends ComponentKey implements Comparable<WidgetItem> {
|
|
|
|
private static UserHandleCompat sMyUserHandle;
|
|
private static Collator sCollator;
|
|
|
|
public final LauncherAppWidgetProviderInfo widgetInfo;
|
|
public final ActivityInfo activityInfo;
|
|
|
|
public final String label;
|
|
public final int spanX, spanY;
|
|
|
|
public WidgetItem(LauncherAppWidgetProviderInfo info, AppWidgetManagerCompat widgetManager) {
|
|
super(info.provider, widgetManager.getUser(info));
|
|
|
|
label = Utilities.trim(widgetManager.loadLabel(info));
|
|
widgetInfo = info;
|
|
activityInfo = null;
|
|
|
|
InvariantDeviceProfile idv = LauncherAppState.getInstance().getInvariantDeviceProfile();
|
|
spanX = Math.min(info.spanX, idv.numColumns);
|
|
spanY = Math.min(info.spanY, idv.numRows);
|
|
}
|
|
|
|
public WidgetItem(ResolveInfo info, PackageManager pm) {
|
|
super(new ComponentName(info.activityInfo.packageName, info.activityInfo.name),
|
|
UserHandleCompat.myUserHandle());
|
|
label = Utilities.trim(info.loadLabel(pm));
|
|
widgetInfo = null;
|
|
activityInfo = info.activityInfo;
|
|
spanX = spanY = 1;
|
|
}
|
|
|
|
@Override
|
|
public int compareTo(WidgetItem another) {
|
|
if (sMyUserHandle == null) {
|
|
// Delay these object creation until required.
|
|
sMyUserHandle = UserHandleCompat.myUserHandle();
|
|
sCollator = Collator.getInstance();
|
|
}
|
|
|
|
// Independent of how the labels compare, if only one of the two widget info belongs to
|
|
// work profile, put that one in the back.
|
|
boolean thisWorkProfile = !sMyUserHandle.equals(user);
|
|
boolean otherWorkProfile = !sMyUserHandle.equals(another.user);
|
|
if (thisWorkProfile ^ otherWorkProfile) {
|
|
return thisWorkProfile ? 1 : -1;
|
|
}
|
|
|
|
int labelCompare = sCollator.compare(label, another.label);
|
|
if (labelCompare != 0) {
|
|
return labelCompare;
|
|
}
|
|
|
|
// If the label is same, put the smaller widget before the larger widget. If the area is
|
|
// also same, put the widget with smaller height before.
|
|
int thisArea = spanX * spanY;
|
|
int otherArea = another.spanX * another.spanY;
|
|
return thisArea == otherArea
|
|
? Integer.compare(spanY, another.spanY)
|
|
: Integer.compare(thisArea, otherArea);
|
|
}
|
|
}
|