本文整理汇总了Java中com.f2prateek.rx.preferences.RxSharedPreferences.getBoolean方法的典型用法代码示例。如果您正苦于以下问题:Java RxSharedPreferences.getBoolean方法的具体用法?Java RxSharedPreferences.getBoolean怎么用?Java RxSharedPreferences.getBoolean使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.f2prateek.rx.preferences.RxSharedPreferences
的用法示例。
在下文中一共展示了RxSharedPreferences.getBoolean方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: init
import com.f2prateek.rx.preferences.RxSharedPreferences; //导入方法依赖的package包/类
@Override
protected void init() {
super.init();
btn_submit.setText("查看变量");
editText=new EditText(getActivity());
checkBox=new CheckBox(getActivity());
checkBox.setText("是否为男性");
container.addView(checkBox);
container.addView(editText);
//创建实例
SharedPreferences preferences = PreferenceManager.getDefaultSharedPreferences(getActivity());
RxSharedPreferences rxPreferences = RxSharedPreferences.create(preferences);
//创建个人
pre_username = rxPreferences.getString("username");
pre_sex= rxPreferences.getBoolean("sex", true);
//绑定
RxCompoundButton.checkedChanges(checkBox)
.subscribe(pre_sex.asAction());
RxTextView.textChanges(editText)
.flatMap(new Func1<CharSequence, Observable<String>>() {
@Override
public Observable<String> call(final CharSequence charSequence) {
return Observable.create(new Observable.OnSubscribe<String>() {
@Override
public void call(Subscriber<? super String> subscriber) {
subscriber.onNext(charSequence.toString());
subscriber.onCompleted();
}
});
}
})
.subscribe(pre_username.asAction());
}
示例2: check_update1
import com.f2prateek.rx.preferences.RxSharedPreferences; //导入方法依赖的package包/类
/**
* 同步SharedPreferences
*/
private void check_update1() {
SharedPreferences preferences = PreferenceManager.getDefaultSharedPreferences(getActivity());
RxSharedPreferences rxPreferences = RxSharedPreferences.create(preferences);
Preference<Boolean> xxFunction = rxPreferences.getBoolean("xxFunction", false);
checkBox1.setChecked(xxFunction.get());
RxCompoundButton.checkedChanges(checkBox1)
.subscribe(xxFunction.asAction());
}
示例3: provideHasSeenSystemSettingsTutorial
import com.f2prateek.rx.preferences.RxSharedPreferences; //导入方法依赖的package包/类
@Provides @Singleton @HasSeenEditPermissionsTutorial
public Preference<Boolean> provideHasSeenSystemSettingsTutorial(
RxSharedPreferences rxPreferences) {
return rxPreferences.getBoolean("provideHasSeenSystemSettingsTutorial", false);
}
示例4: provideDisplayAllPermissions
import com.f2prateek.rx.preferences.RxSharedPreferences; //导入方法依赖的package包/类
@Provides @Singleton @DisplayAllPermissions
public Preference<Boolean> provideDisplayAllPermissions(RxSharedPreferences rxPreferences) {
return rxPreferences.getBoolean("displayAllPermissions", false);
}
示例5: provideOnlyShowUsedLibraries
import com.f2prateek.rx.preferences.RxSharedPreferences; //导入方法依赖的package包/类
@Provides @Singleton @OnlyShowUsedLibraries
public Preference<Boolean> provideOnlyShowUsedLibraries(RxSharedPreferences rxPreferences) {
return rxPreferences.getBoolean("onlyShowUsedLibraries", true);
}
示例6: provideCaptureIntentsPreference
import com.f2prateek.rx.preferences.RxSharedPreferences; //导入方法依赖的package包/类
@Provides @Singleton @CaptureIntents
Preference<Boolean> provideCaptureIntentsPreference(RxSharedPreferences preferences) {
return preferences.getBoolean("debug_capture_intents", DEFAULT_CAPTURE_INTENTS);
}
示例7: providePicassoDebugging
import com.f2prateek.rx.preferences.RxSharedPreferences; //导入方法依赖的package包/类
@Provides @Singleton @PicassoDebugging
Preference<Boolean> providePicassoDebugging(RxSharedPreferences preferences) {
return preferences.getBoolean("debug_picasso_debugging", DEFAULT_PICASSO_DEBUGGING);
}
示例8: providePixelGridEnabled
import com.f2prateek.rx.preferences.RxSharedPreferences; //导入方法依赖的package包/类
@Provides @Singleton @PixelGridEnabled
Preference<Boolean> providePixelGridEnabled(RxSharedPreferences preferences) {
return preferences.getBoolean("debug_pixel_grid_enabled", DEFAULT_PIXEL_GRID_ENABLED);
}
示例9: providePixelRatioEnabled
import com.f2prateek.rx.preferences.RxSharedPreferences; //导入方法依赖的package包/类
@Provides @Singleton @PixelRatioEnabled
Preference<Boolean> providePixelRatioEnabled(RxSharedPreferences preferences) {
return preferences.getBoolean("debug_pixel_ratio_enabled", DEFAULT_PIXEL_RATIO_ENABLED);
}
示例10: provideSeenDebugDrawer
import com.f2prateek.rx.preferences.RxSharedPreferences; //导入方法依赖的package包/类
@Provides @Singleton @SeenDebugDrawer
Preference<Boolean> provideSeenDebugDrawer(RxSharedPreferences preferences) {
return preferences.getBoolean("debug_seen_debug_drawer", DEFAULT_SEEN_DEBUG_DRAWER);
}
示例11: provideScalpelEnabled
import com.f2prateek.rx.preferences.RxSharedPreferences; //导入方法依赖的package包/类
@Provides @Singleton @ScalpelEnabled
Preference<Boolean> provideScalpelEnabled(RxSharedPreferences preferences) {
return preferences.getBoolean("debug_scalpel_enabled", DEFAULT_SCALPEL_ENABLED);
}
示例12: provideScalpelWireframeEnabled
import com.f2prateek.rx.preferences.RxSharedPreferences; //导入方法依赖的package包/类
@Provides @Singleton @ScalpelWireframeEnabled
Preference<Boolean> provideScalpelWireframeEnabled(RxSharedPreferences preferences) {
return preferences.getBoolean("debug_scalpel_wireframe_drawer",
DEFAULT_SCALPEL_WIREFRAME_ENABLED);
}
示例13: TelescopeViewContainer
import com.f2prateek.rx.preferences.RxSharedPreferences; //导入方法依赖的package包/类
@Inject public TelescopeViewContainer(LumberYard lumberYard, RxSharedPreferences preferences,
IntentManager intentManager) {
this.lumberYard = lumberYard;
this.seenTelescopeDialog = preferences.getBoolean("internal-seen-telescope-dialog", false);
this.intentManager = intentManager;
}
示例14: parseMethodAnnotations
import com.f2prateek.rx.preferences.RxSharedPreferences; //导入方法依赖的package包/类
private void parseMethodAnnotations() {
for (Annotation methodAnnotation : method.getAnnotations()) {
Class<? extends Annotation> annotationType = methodAnnotation.annotationType();
if (annotationType == Favor.class) {
key = ((Favor) methodAnnotation).value();
if (key.trim().length() == 0) {
key = getKeyFromMethod(method);
}
if (!TextUtils.isEmpty(prefix)) {
key = prefix + key;
}
} else if (annotationType == Default.class) {
defaultValues = ((Default) methodAnnotation).value();
} else if (annotationType == Commit.class) {
commit = true;
}
}
if (allFavor && key == null) {
key = getKeyFromMethod(method);
if (!TextUtils.isEmpty(prefix)) {
key = prefix + key;
}
}
if (responseType == ResponseType.OBSERVABLE) {
checkDefaultValueType(responseObjectType, defaultValues);
if (commit) {
Log.w(TAG, "@Commit will be ignored for RxReference");
}
RxSharedPreferences rx = RxSharedPreferences.create(sp);
if (responseObjectType == String.class) {
rxPref = rx.getString(key, defaultValues[0]);
} else if (responseObjectType == Integer.class) {
rxPref = rx.getInteger(key, defaultValues[0] == null ? null : Integer.valueOf(defaultValues[0]));
} else if (responseObjectType == Float.class) {
rxPref = rx.getFloat(key, defaultValues[0] == null ? null : Float.valueOf(defaultValues[0]));
} else if (responseObjectType == Long.class) {
rxPref = rx.getLong(key, defaultValues[0] == null ? null : Long.valueOf(defaultValues[0]));
} else if (responseObjectType == Boolean.class) {
rxPref = rx.getBoolean(key, defaultValues[0] == null ? null : Boolean.valueOf(defaultValues[0]));
} else if (Serializable.class.isAssignableFrom(Types.getRawType(responseObjectType))) {
rxPref = rx.getObject(key, new SerializableAdapter<>());
} else {
// Class returnTypeClass = Types.getRawType(returnType);
// if (returnTypeClass == Set.class) {
// rxPref = rx.getStringSet(key,new HashSet<String>(defaultValues))
// }
}
} else {
if (FavorType == String.class) {
taste = new Taste.StringTaste(sp, key, defaultValues);
} else if (FavorType == boolean.class) {
taste = new Taste.BoolTaste(sp, key, defaultValues);
} else if (FavorType == int.class) {
taste = new Taste.IntTaste(sp, key, defaultValues);
} else if (FavorType == float.class) {
taste = new Taste.FloatTaste(sp, key, defaultValues);
} else if (FavorType == long.class) {
taste = new Taste.LongTaste(sp, key, defaultValues);
} else if (Types.getRawType(FavorType) == Set.class) {
taste = new Taste.StringSetTaste(sp, key, defaultValues);
} else if (Serializable.class.isAssignableFrom(Types.getRawType(FavorType))) {
taste = new Taste.SerializableTaste(sp, key, defaultValues);
} else {
taste = new Taste.EmptyTaste(sp, key, defaultValues);
throw methodError("Unsupported type " + FavorType.toString());
}
}
}
示例15: provideShowOutlineFlag
import com.f2prateek.rx.preferences.RxSharedPreferences; //导入方法依赖的package包/类
@Provides @Singleton @ShowOutline Preference<Boolean> provideShowOutlineFlag(
RxSharedPreferences prefs) {
return prefs.getBoolean("showOutline", false);
}