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