0

カスタムダイアログ設定を使用して、設定メニューにシークバーを生成しています。シークバーの実装を調査した後、シークバーから必要なフロート値を取得するために、次のコードを記述しました。

public void onProgressChanged(SeekBar seek, int newValue,
        boolean fromTouch) {
    // Round the value to the closest integer value.
    if (stepSize >= 1) {
        value = Math.round(newValue/stepSize)*stepSize;

    }
    else {
        value = newValue;
    }

    // Set the valueText text.
    float sValue = newValue*10;
    sValue = sValue/100;

    valueText.setText(Float.toString(sValue));

これは私が望むフロートを生成します。ただし、このフロートをメインのアクティビティで使用できるようにしたいと思います。次を使用してSharedPreferencesを使用して保存しようとしました。

userPrefs = PreferenceManager.getDefaultSharedPreferences(getBaseContext());
Editor editor = userPrefs.edit()
editor.putFloat("mpm", sValue);
editor.commit();

これが、Activityを拡張するクラスでSharedPreferencesを使用する方法を学びました。

ただし、このシークバーはダイアログ設定を拡張するため、使用できません

getBaseContext()

getBaseContextメソッドがこのタイプに対して未定義であるというエラーが表示されます。

getBaseContext()をgetContext()に変更しようとしましたが、この実装に慣れていないことが原因である可能性がありますが、これは失敗しました。

このフロートをダイアログ設定から保存して、別のクラスで値を使用するにはどうすればよいですか?

SharedPreferencesを取得するために使用しているコード:

protected void onCreate(Bundle savedInstanceState) {
    // TODO Auto-generated method stub
    super.onCreate(savedInstanceState);
    setContentView(R.layout.logbook);
    initialise();
    userPrefs = PreferenceManager.getDefaultSharedPreferences(getBaseContext());

    list = userPrefs.getString("list", "10");
    userswallstring = userPrefs.getString("height", "10.0");


    try {
        usersWall = Float.valueOf(userswallstring.trim());
    } catch (Exception e) {
        // TODO: handle exception
    }
    mpm = userPrefs.getFloat("mpm", 2);

Mpm.class:パッケージcom.gbclimber.ep;

 import android.content.Context;
 import android.content.DialogInterface;
 import android.content.SharedPreferences;

 import android.content.SharedPreferences.Editor;
 import android.content.res.TypedArray;
 import android.preference.DialogPreference;
 import android.preference.PreferenceManager;

 import android.util.AttributeSet;

 import android.view.LayoutInflater;
 import android.view.View;

 import android.widget.SeekBar;
 import android.widget.TextView;


 public class Mpm extends
    DialogPreference implements SeekBar.OnSeekBarChangeListener {
// Layout widgets.
private SeekBar seekBar = null;
private TextView valueText = null;

// Custom xml attributes.
private int maximumValue = 0;
private int minimumValue = 0;
private int stepSize = 0;
private String units = null;

private int value = 0;
SharedPreferences userPrefs;
/**
 * The SeekBarDialogPreference constructor.
 * @param context of this preference.
 * @param attrs custom xml attributes.
 */
public Mpm(Context context, AttributeSet attrs) {
    super(context, attrs);

    TypedArray typedArray = context.obtainStyledAttributes(attrs,
        R.styleable.Mpm);

    maximumValue = typedArray.getInteger(
        R.styleable.Mpm_maximumValue, 0);
    minimumValue = typedArray.getInteger(
        R.styleable.Mpm_minimumValue, 0);
    stepSize = typedArray.getInteger(
        R.styleable.Mpm_stepSize, 1);
    units = typedArray.getString(
        R.styleable.Mpm_units);

    typedArray.recycle();
}
/**
 * {@inheritDoc}
 */
protected View onCreateDialogView() {

    LayoutInflater layoutInflater = LayoutInflater.from(getContext());

    View view = layoutInflater.inflate(
        R.layout.mpmdp, null);

    seekBar = (SeekBar)view.findViewById(R.id.seekbar);
    valueText = (TextView)view.findViewById(R.id.valueText);

    // Get the persistent value and correct it for the minimum value.
    value = getPersistedInt(minimumValue) - minimumValue;

    // You're never know...
    if (value < 0) {
        value = 0;
    }

    seekBar.setOnSeekBarChangeListener(this);
    seekBar.setKeyProgressIncrement(stepSize);
    seekBar.setMax(maximumValue - minimumValue);
    seekBar.setProgress(value);

    return view;
}
/**
 * {@inheritDoc}
 */
public void onProgressChanged(SeekBar seek, int newValue,
        boolean fromTouch) {
    // Round the value to the closest integer value.
    if (stepSize >= 1) {
        value = Math.round(newValue/stepSize)*stepSize;

    }
    else {
        value = newValue;
    }

    // Set the valueText text.
    float sValue = newValue*10;
    sValue = sValue/100;
    userPrefs = PreferenceManager
            .getDefaultSharedPreferences(getContext());
    Editor editor = userPrefs.edit();
    editor.putFloat("mpm", sValue);
    editor.commit();
    valueText.setText(Float.toString(sValue));

    callChangeListener(value);
}
/**
 * {@inheritDoc}
 */
public void onStartTrackingTouch(SeekBar seek) {
}
/**
 * {@inheritDoc}
 */
public void onStopTrackingTouch(SeekBar seek) {
}
/**
 * {@inheritDoc}
 */
public void onClick(DialogInterface dialog, int which) {
    // if the positive button is clicked, we persist the value.
    if (which == DialogInterface.BUTTON_POSITIVE) {
        if (shouldPersist()) {
            persistInt(value + minimumValue);
        }
    }

    super.onClick(dialog, which);
}
@Override
protected void onDialogClosed(boolean positiveResult) {
    // TODO Auto-generated method stub
    super.onDialogClosed(positiveResult);
    persistInt(value + minimumValue);
}

}

4

1 に答える 1

0

簡単な検索を行いましたが、コンテキストを試してみてください

this.getDialog().getContext()
于 2012-08-17T19:45:25.923 に答える