I face a problem when I try press the settings icon on action bar and go to settings page in my android project.
Here is the code:
public boolean onOptionsItemSelected(MenuItem item) {
if(item.getItemId() == R.id.settings) {
startActivity(new Intent(ProfileFragment.this, SettingsActivity.class));
}
return super.onOptionsItemSelected(item);
}
The error is in ProfileFragment.this, SettingsActivity.class line. There is no fatal error but there is a red line under the code.
How can I solve this?
Thanks for answers.