0

このクラスの sharedpreferences から値を取得できません。getDefaultSharedPreferences は、「タイプ PreferenceManager のメソッド getDefaultSharedPreferences(Context) は、引数 (HandlingXMLStuff) には適用できません」というエラーを返します。

メインクラスから値を取得できますが、以下に示すクラスに渡すことができません。

public class HandlingXMLStuff extends DefaultHandler {
String Units;

private XMLDataCollected info = new XMLDataCollected();

public String getInformation() {
    return info.dataToString();
}

@Override
public void startElement(String uri, String localName, String qName,
        Attributes attributes) throws SAXException {



    SharedPreferences prefs = PreferenceManager
            .getDefaultSharedPreferences(this);
    String unit = prefs.getString("unitsofmeasure", "Fahrenheit");

    Log.d("HandlingXMLStuff", "test" + unit);
    // if (Units == "Farenheit") {
    if (localName.equals("city")) {
        String city = attributes.getValue("data");
        info.setCity(city);
        Log.d("DeskClockActivity", "test" + city);

    } else if (localName.equals("temp_f")) {
        String t = attributes.getValue("data");
        int temp = Integer.parseInt(t);
        info.setTemp(temp);
    }
    /*
     * }/* else if (unit == "C") { if (localName.equals("city")) { String
     * city = attributes.getValue("data"); info.setCity(city); } else if
     * (localName.equals("temp_c")) { String t =
     * attributes.getValue("data"); int temp = Integer.parseInt(t);
     * info.setTemp(temp); } }
     */
}

}

4

1 に答える 1

0

getDefaultSharedPreferences はコンテキスト パラメーターを取得していますが、DefaultHandler クラスはコンテキストではありません。

于 2012-04-22T18:52:17.300 に答える