我想提出一个动态壁纸,我需要改变车辆的速度设置场景,它需要我的时候按回车键即可反射回壁纸服务。 在我的偏好活动,我省在类似这样的共享偏好列表偏好的变化: -
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
addPreferencesFromResource(R.xml.prefs);
ListPreference listPreference = (ListPreference) findPreference("listPref");
currValue = listPreference.getValue();
Log.e("LiveWallpaperSettings", "currvalue " + currValue);
listPreference.setOnPreferenceChangeListener(new OnPreferenceChangeListener() {
@Override
public boolean onPreferenceChange(Preference arg0, Object arg1) {
SharedPreferences customSharedPreference = getSharedPreferences("Speed", LiveWallpaperSettings.MODE_PRIVATE);
SharedPreferences.Editor editor = customSharedPreference.edit();
editor.putString("Speed",currValue);
editor.commit();
return true;
}
});
我的壁纸服务使用andengine livewallpaper分机上。 如果我想反映在服务中我的名单偏好的变化,我怎么做。 这是我做的,但它似乎并不奏效。
我的prefs.xml
<PreferenceCategory
android:title="Settings">
<ListPreference
android:title="Speed"
android:summary="Change the Speed"
android:key="listPref"
android:defaultValue="15"
android:entries="@array/listArray"
android:entryValues="@array/listValues"
/>
</PreferenceCategory>
我array.xml
<resources>
<string-array name = "listArray">
<item>Slow</item>
<item>Medium</item>
<item>Fast</item>
</string-array>
<string-array name = "listValues">
<item>5</item>
<item>15</item>
<item>30</item>
</string-array>
在我的服务我实现SharedPreferences.OnSharedPreferenceChangeListener并实现下面的方法
public void onSharedPreferenceChanged(SharedPreferences sharedPreferences,String key) {
sharedPreferences = getSharedPreferences("Speed", MODE_PRIVATE);
strSpeedValue = sharedPreferences.getString("Speed", "5");
fltSpeedValue = Integer.parseInt(strSpeedValue);
final AutoParallaxBackground autoParallaxBackground = new AutoParallaxBackground(0, 0, 0, 10);
autoParallaxBackground.attachParallaxEntity(new ParallaxEntity(fltSpeedValue, new Sprite(0,mCamera.getHeight() - this.mParallaxLayer.getHeight(),this.mParallaxLayer, getVertexBufferObjectManager())));
autoParallaxBackground.attachParallaxEntity(new ParallaxEntity(0f, new Sprite(CAMERA_WIDTH/2 - 30, CAMERA_HEIGHT/2,this.mAutoLayer, getVertexBufferObjectManager())));
mMainScene.setBackground(autoParallaxBackground);
}
@Override
protected void onResume() {
super.onResume();
// Set up a listener whenever a key changes
PreferenceManager.getDefaultSharedPreferences(this).registerOnSharedPreferenceChangeListener(this);
}
@Override
protected void onPause() {
super.onPause();
// Unregister the listener whenever a key changes
PreferenceManager.getDefaultSharedPreferences(this).unregisterOnSharedPreferenceChangeListener(this);
}
但是,我在listpreference我改变的价值没有得到我的服务改变。 难道我做错了什么?