mirror of
https://github.com/LawnchairLauncher/lawnchair.git
synced 2026-02-19 10:48:19 +00:00
Allow for NxM layout and in-place rotation of items on homescreen.
Currently, rotation is disabled as designs are still in flux, but the NxM grid is enabled (8x4). Change-Id: I0026f88c674719e3d67de6d6d481d2d4cd606362
This commit is contained in:
@@ -20,6 +20,7 @@ import android.app.Application;
|
||||
import android.content.ContentResolver;
|
||||
import android.content.Intent;
|
||||
import android.content.IntentFilter;
|
||||
import android.content.res.Configuration;
|
||||
import android.database.ContentObserver;
|
||||
import android.os.Handler;
|
||||
import dalvik.system.VMRuntime;
|
||||
@@ -27,6 +28,8 @@ import dalvik.system.VMRuntime;
|
||||
public class LauncherApplication extends Application {
|
||||
public LauncherModel mModel;
|
||||
public IconCache mIconCache;
|
||||
private static boolean sIsScreenXLarge;
|
||||
private static final boolean ENABLE_ROTATION = false;
|
||||
|
||||
@Override
|
||||
public void onCreate() {
|
||||
@@ -36,6 +39,7 @@ public class LauncherApplication extends Application {
|
||||
|
||||
mIconCache = new IconCache(this);
|
||||
mModel = new LauncherModel(this, mIconCache);
|
||||
sIsScreenXLarge = (getResources().getConfiguration().screenLayout & Configuration.SCREENLAYOUT_SIZE_MASK) == Configuration.SCREENLAYOUT_SIZE_XLARGE;
|
||||
|
||||
// Register intent receivers
|
||||
IntentFilter filter = new IntentFilter(Intent.ACTION_PACKAGE_ADDED);
|
||||
@@ -89,4 +93,12 @@ public class LauncherApplication extends Application {
|
||||
LauncherModel getModel() {
|
||||
return mModel;
|
||||
}
|
||||
|
||||
public static boolean isInPlaceRotationEnabled() {
|
||||
return sIsScreenXLarge && ENABLE_ROTATION;
|
||||
}
|
||||
|
||||
public static boolean isScreenXLarge() {
|
||||
return sIsScreenXLarge;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user