Beispiel #1
0
 /**
  * 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;
 }
Beispiel #2
0
 /**
  * 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();
 }
Beispiel #3
0
 /** Retrieve a long value from the preferences. */
 public long getLong(String key, long defValue) {
   Assert.NOT_IMPLEMENTED();
   return 0;
 }
Beispiel #4
0
 @Override
 public void setTopLevelViewController(CommonView view) {
   Assert.NOT_IMPLEMENTED();
 }
Beispiel #5
0
 @Override
 public void setStatusBarHidden(boolean b) {
   Assert.NOT_IMPLEMENTED();
 }
Beispiel #6
0
 @Override
 public void makeKeyAndVisible() {
   Assert.NOT_IMPLEMENTED();
 }
Beispiel #7
0
 @Override
 public void setNeedsDisplay() {
   Assert.NOT_IMPLEMENTED();
 }
Beispiel #8
0
 @Override
 public void setFrame(RectF rect) {
   Assert.NOT_IMPLEMENTED();
 }