Home | History | Annotate | Download | only in settings
      1 /*
      2  * Copyright (C) 2015 The Android Open Source Project
      3  *
      4  * Licensed under the Apache License, Version 2.0 (the "License");
      5  * you may not use this file except in compliance with the License.
      6  * You may obtain a copy of the License at
      7  *
      8  *      http://www.apache.org/licenses/LICENSE-2.0
      9  *
     10  * Unless required by applicable law or agreed to in writing, software
     11  * distributed under the License is distributed on an "AS IS" BASIS,
     12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     13  * See the License for the specific language governing permissions and
     14  * limitations under the License
     15  */
     16 
     17 package com.android.phone.settings;
     18 
     19 import android.app.ActionBar;
     20 import android.os.Bundle;
     21 import android.preference.PreferenceActivity;
     22 import android.view.MenuItem;
     23 
     24 import com.android.phone.R;
     25 
     26 public class AccessibilitySettingsActivity extends PreferenceActivity {
     27 
     28    @Override
     29     protected void onCreate(Bundle icicle) {
     30         super.onCreate(icicle);
     31         final ActionBar actionBar = getActionBar();
     32         if (actionBar != null) {
     33           actionBar.setTitle(R.string.accessibility_settings_activity_title);
     34         }
     35         getFragmentManager().beginTransaction().replace(
     36                 android.R.id.content, new AccessibilitySettingsFragment()).commit();
     37     }
     38 
     39     @Override
     40     public boolean onOptionsItemSelected(MenuItem item) {
     41         if (item.getItemId() == android.R.id.home) {
     42             onBackPressed();
     43             return true;
     44         }
     45         return super.onOptionsItemSelected(item);
     46     }
     47 }
     48