Сделал кнопку "назад" на экране настроек и она не отображается.
Возможна эта кнопка на экране настроек?
код кнопки
/** Назад к родительскому активити */
@Override
public boolean onOptionsItemSelected(MenuItem item) {
switch (item.getItemId()) {
// Respond to the action bar's Up/Home button
case android.R.id.home:
Intent upIntent = NavUtils.getParentActivityIntent(this);
if (NavUtils.shouldUpRecreateTask(this, upIntent)) {
// This activity is NOT part of this app's task, so create a new task
// when navigating up, with a synthesized back stack.
TaskStackBuilder.create(this)
// Add all of this activity's parents to the back stack
.addNextIntentWithParentStack(upIntent)
// Navigate up to the closest parent
.startActivities();
} else {
// This activity is part of this app's task, so simply
// navigate up to theMain logical parent activity.
NavUtils.navigateUpTo(this, upIntent);
}
return true;
}
return super.onOptionsItemSelected(item);
}
код в манифесте
<activity
android:name=".Setting"
android:label="@string/mysetting"
android:icon="@drawable/ic_setting_off"
android:screenOrientation="portrait"
android:theme="@android:style/Theme.Holo">
<!-- Назад к родительскому активити -->
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value=".Main" />
</activity>