我有偏好活动从用户获取URL我遇到的问题是当我关闭应用程序然后再次运行应用程序时,不会保留URL状态。我想要的是用户设置URL 1时间和每次应用程序使用该URL运行,直到除非用户不更改它。
我的偏好活动XML。
<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" android:layout_height="0dp" android:layout_width="0dp">
<PreferenceCategory android:title="Authentication">
</PreferenceCategory>
<PreferenceCategory android:title="Server URL">
<EditTextPreference android:key="rootUrl"
android:title="Server URL"
android:summary="URL to upload and download data"
>
</EditTextPreference>
</PreferenceCategory>
</PreferenceScreen>
偏好等级:
public class AppSettings extends PreferenceActivity {
@SuppressWarnings("deprecation")
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
addPreferencesFromResource(R.layout.app_settings);
}
}
我获得根URL值的代码
SharedPreferences settings= PreferenceManager.getDefaultSharedPreferences(this);
String s=settings.getString("rootUrl","default");
s=s+"?path=./";
m_urlString=s;
m_root=s;
答案 0 :(得分:1)
将android:persistent="true"
添加到EditTextPreference,它将自动保留。
<EditTextPreference android:key="rootUrl"
android:title="Server URL"
android:summary="URL to upload and download data"
android:persistent="true"/>