本文整理汇总了Java中com.f2prateek.rx.preferences.RxSharedPreferences.create方法的典型用法代码示例。如果您正苦于以下问题:Java RxSharedPreferences.create方法的具体用法?Java RxSharedPreferences.create怎么用?Java RxSharedPreferences.create使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.f2prateek.rx.preferences.RxSharedPreferences
的用法示例。
在下文中一共展示了RxSharedPreferences.create方法的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: WindFishState
import com.f2prateek.rx.preferences.RxSharedPreferences; //导入方法依赖的package包/类
WindFishState(Application context, RxPowerStatus powerStatus) {
this.powerStatus = powerStatus;
SharedPreferences sharedPreferences =
context.getSharedPreferences("windfish_state.prefs", Context.MODE_PRIVATE);
RxSharedPreferences rxPrefs = RxSharedPreferences.create(sharedPreferences);
mode = rxPrefs.getString(KEY_MODE, Mode.ALWAYS_OFF.name());
}
示例4: InitialStartupInteractor
import com.f2prateek.rx.preferences.RxSharedPreferences; //导入方法依赖的package包/类
public InitialStartupInteractor(Context context, DatabaseReference firebaseClient, IUserInteractor userInteractor) {
mContext = context;
mFirebaseClient = firebaseClient;
mUserInteractor = userInteractor;
mPrefs = context.getSharedPreferences(SP_NAME, Context.MODE_PRIVATE);
mRxPrefs = RxSharedPreferences.create(mPrefs);
}
示例5: NetworkSettingsRepository
import com.f2prateek.rx.preferences.RxSharedPreferences; //导入方法依赖的package包/类
@Inject
NetworkSettingsRepository(@NetworkPreferences final SharedPreferences sharedPreferences) {
this.sharedPreferences = sharedPreferences;
this.rxSharedPreferences = RxSharedPreferences.create(sharedPreferences);
}
示例6: provideRxSharedPreferences
import com.f2prateek.rx.preferences.RxSharedPreferences; //导入方法依赖的package包/类
@Provides @Singleton
public RxSharedPreferences provideRxSharedPreferences(SharedPreferences sharedPreferences) {
return RxSharedPreferences.create(sharedPreferences);
}
示例7: provideRxSharedPreferences
import com.f2prateek.rx.preferences.RxSharedPreferences; //导入方法依赖的package包/类
@Provides @Singleton RxSharedPreferences provideRxSharedPreferences(SharedPreferences prefs) {
return RxSharedPreferences.create(prefs);
}
示例8: AppPreferenceServiceImpl
import com.f2prateek.rx.preferences.RxSharedPreferences; //导入方法依赖的package包/类
public AppPreferenceServiceImpl(Context ctx, Scheduler ioScheduler) {
this.ioScheduler = ioScheduler;
preferences = PreferenceManager.getDefaultSharedPreferences(ctx);
rxSharedPreferences = RxSharedPreferences.create(preferences);
}
示例9: provideRxSharedPreferences
import com.f2prateek.rx.preferences.RxSharedPreferences; //导入方法依赖的package包/类
@Provides @ApplicationScope RxSharedPreferences provideRxSharedPreferences(SharedPreferences prefs) {
return RxSharedPreferences.create(prefs);
}
示例10: 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());
}
}
}
示例11: provideRxSharedPreferences
import com.f2prateek.rx.preferences.RxSharedPreferences; //导入方法依赖的package包/类
@Provides @PerApp RxSharedPreferences provideRxSharedPreferences(SharedPreferences preferences) {
return RxSharedPreferences.create(preferences);
}
示例12: getRxSharedPreferences
import com.f2prateek.rx.preferences.RxSharedPreferences; //导入方法依赖的package包/类
private static RxSharedPreferences getRxSharedPreferences(Context context, int id) {
return RxSharedPreferences.create(getWidgetPreferences(context, id));
}
示例13: provideRxSharedPreferences
import com.f2prateek.rx.preferences.RxSharedPreferences; //导入方法依赖的package包/类
@Provides
@ApplicationScope
RxSharedPreferences provideRxSharedPreferences(SharedPreferences preferences) {
return RxSharedPreferences.create(preferences);
}
示例14: getRxSharedPreferences
import com.f2prateek.rx.preferences.RxSharedPreferences; //导入方法依赖的package包/类
private static RxSharedPreferences getRxSharedPreferences(Context context) {
return RxSharedPreferences.create(getSharedPreferences(context));
}
示例15: provideRxSharedPreferences
import com.f2prateek.rx.preferences.RxSharedPreferences; //导入方法依赖的package包/类
@Provides
@Singleton
RxSharedPreferences provideRxSharedPreferences(SharedPreferences prefs){
return RxSharedPreferences.create(prefs);
}