/** * Set a long value in the preferences editor, to be written back once commit() is called. * * @return Returns a reference to the same Editor object, so you can chain put calls together. */ public SharedPreferences.Editor putLong(String key, long value) { Assert.NOT_IMPLEMENTED(); return this; }
/** * Set the global gamma coefficients for black and white text. This call is usually a no-op in * shipping products, and only exists for testing during development. * * @param blackGamma gamma coefficient for black text * @param whiteGamma gamma coefficient for white text * @hide - this is just for calibrating devices, not for normal apps */ public static void setGammaForText(float blackGamma, float whiteGamma) { Assert.NOT_IMPLEMENTED(); }
/** Retrieve a long value from the preferences. */ public long getLong(String key, long defValue) { Assert.NOT_IMPLEMENTED(); return 0; }
@Override public void setTopLevelViewController(CommonView view) { Assert.NOT_IMPLEMENTED(); }
@Override public void setStatusBarHidden(boolean b) { Assert.NOT_IMPLEMENTED(); }
@Override public void makeKeyAndVisible() { Assert.NOT_IMPLEMENTED(); }
@Override public void setNeedsDisplay() { Assert.NOT_IMPLEMENTED(); }
@Override public void setFrame(RectF rect) { Assert.NOT_IMPLEMENTED(); }