Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Nguyễn Thịnh
1,474 PointsThe compiler throw ./MainActivity.java:10: error: cannot find symbol
Why compiler throw this error:
./MainActivity.java:10: error: cannot find symbol public Editor mEditor; ^ symbol: class Editor location: class MainActivity 1 error
public Editor mEditor;
import android.view.View;
import android.os.Bundle;
public class MainActivity extends Activity {
private static final String PREFS_FILE = "xxx";
private static final String KEY_CHECKBOX = "cbx";
public CheckBox mCheckBox;
public SharedPreferences mSharedPreferences;
public Editor mEditor;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
mCheckBox = (CheckBox) findViewById(R.id.checkBox);
}
}
1 Answer

Kourosh Raeen
23,732 PointsThe type of mEditor
should be SharedPreferences.Editor
:
public SharedPreferences.Editor mEditor;
Also, initialize both mSharedPreferences
and mEditor
in onCreate()
.
Nguyễn Thịnh
1,474 PointsNguyễn Thịnh
1,474 Pointsthanks Kourosh Raeen (y)