I believe I have a simple question.... but for me as beginner, I can't see it anymore.
In a class I want to get some var's from another class.
class 1:
package com.blabla;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.content.SharedPreferences;
import android.preference.PreferenceManager;
public class SMSReceiver extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
//get shared preferences
GetSettings test1 = new RingSettings();
String theSMStext = test1.getSMStext();
Boolean theActivateSMS = test1.getActivateSMS();
}
}
class 2:
package com.blabla;
import android.content.Context;
import android.content.SharedPreferences;
import android.preference.PreferenceManager;
public class GetSettings {
/**
* @param args
*/
private String SMStext;
private Boolean ActivateSMS;
public static void RingSettings(Context context) {
SharedPreferences sp = PreferenceManager.getDefaultSharedPreferences(context);
String SMStext = sp.getString("SMStext", "0");
Boolean ActivateSMS = sp.getBoolean("ActivateSMS", false);
}
public String getSMStext(){
return SMStext;
}
public Boolean getActivateSMS(){
return ActivateSMS;
}
}
Eclipse is giving me in class1 "RingSettings can't resolved to a type" => at GetSettings test1 = new RingSettings();
What I'm doing wrong?!
RingSettingsright now you're trying to instantiate a methodRingSettings, from the classGetSettingswhich will obviously fail. I recommend you to learn a bit more about Java(and Android as well). Also maybe you wanted to doGetSettings test1 = new GetSettings();– Luksprog May 20 '12 at 7:52