本文整理汇总了Java中com.f2prateek.rx.preferences.RxSharedPreferences.getString方法的典型用法代码示例。如果您正苦于以下问题:Java RxSharedPreferences.getString方法的具体用法?Java RxSharedPreferences.getString怎么用?Java RxSharedPreferences.getString使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.f2prateek.rx.preferences.RxSharedPreferences
的用法示例。
在下文中一共展示了RxSharedPreferences.getString方法的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: 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());
}
示例3: provideEndpointPreference
import com.f2prateek.rx.preferences.RxSharedPreferences; //导入方法依赖的package包/类
@Provides @Singleton @ApiEndpoint
Preference<String> provideEndpointPreference(RxSharedPreferences preferences) {
return preferences.getString("debug_endpoint", ApiEndpoints.PRODUCTION.url);
}
示例4: provideAccessToken
import com.f2prateek.rx.preferences.RxSharedPreferences; //导入方法依赖的package包/类
@Provides @Singleton @AccessToken Preference<String> provideAccessToken(RxSharedPreferences prefs) {
return prefs.getString("access-token");
}
示例5: provideAccessToken
import com.f2prateek.rx.preferences.RxSharedPreferences; //导入方法依赖的package包/类
@Provides @ApplicationScope @AccessToken Preference<String> provideAccessToken(RxSharedPreferences prefs) {
return prefs.getString("access-token");
}
示例6: 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());
}
}
}
示例7: provideRxSyncId
import com.f2prateek.rx.preferences.RxSharedPreferences; //导入方法依赖的package包/类
@Provides @PerApp @Named(PreferenceHelper.SYNC_ID) Preference<String> provideRxSyncId(
RxSharedPreferences preferences) {
return preferences.getString(PreferenceHelper.SYNC_ID, null);
}
示例8: provideRxTitle
import com.f2prateek.rx.preferences.RxSharedPreferences; //导入方法依赖的package包/类
@Provides @PerApp @Named(PreferenceHelper.TITLE) Preference<String> provideRxTitle(
RxSharedPreferences preferences, Application application) {
return preferences.getString(PreferenceHelper.TITLE, application.getString(R.string.app_name));
}
示例9: provideRxFavoriteSyncId
import com.f2prateek.rx.preferences.RxSharedPreferences; //导入方法依赖的package包/类
@Provides @PerApp @Named(PreferenceHelper.FAVORITE_SYNC_ID)
Preference<String> provideRxFavoriteSyncId(RxSharedPreferences preferences) {
return preferences.getString(PreferenceHelper.FAVORITE_SYNC_ID, null);
}
示例10: provideRxFavoriteTitle
import com.f2prateek.rx.preferences.RxSharedPreferences; //导入方法依赖的package包/类
@Provides @PerApp @Named(PreferenceHelper.FAVORITE_TITLE)
Preference<String> provideRxFavoriteTitle(RxSharedPreferences preferences) {
return preferences.getString(PreferenceHelper.FAVORITE_TITLE, null);
}
示例11: provide
import com.f2prateek.rx.preferences.RxSharedPreferences; //导入方法依赖的package包/类
@Provides @PerApp @Named(PreferenceHelper.NIGHT_MODE) Preference<String> provide(
RxSharedPreferences prefs) {
return prefs.getString(PreferenceHelper.NIGHT_MODE,
String.valueOf(AppCompatDelegate.MODE_NIGHT_NO));
}
示例12: provideEndpointPreference
import com.f2prateek.rx.preferences.RxSharedPreferences; //导入方法依赖的package包/类
@Provides
@ApplicationScope
@ApiEndpoint
Preference<String> provideEndpointPreference(RxSharedPreferences prefs) {
return prefs.getString("debug_endpoint", ApiEndpoints.MOCK_MODE.url);
}
示例13: provideAccessToken
import com.f2prateek.rx.preferences.RxSharedPreferences; //导入方法依赖的package包/类
@Provides @Singleton @AccessToken
Preference<String> provideAccessToken(RxSharedPreferences prefs) {
return prefs.getString("access-token");
}
示例14: provideAccessToken
import com.f2prateek.rx.preferences.RxSharedPreferences; //导入方法依赖的package包/类
@Provides @Singleton @AccessToken Preference<String> provideAccessToken(RxSharedPreferences prefs,
@ApiEndpoint Preference<String> endpoint) {
// Return an endpoint-specific preference.
return prefs.getString("access-token-" + endpoint.get());
}
示例15: provideEndpointPreference
import com.f2prateek.rx.preferences.RxSharedPreferences; //导入方法依赖的package包/类
@Provides @Singleton @ApiEndpoint
Preference<String> provideEndpointPreference(RxSharedPreferences preferences) {
return preferences.getString("debug_endpoint", ApiEndpoints.MOCK_MODE.url);
}