• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /**
2  * Copyright (C) 2014 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 import android.view.WindowManager;
24 
25 import com.android.phone.R;
26 
27 public class PhoneAccountSettingsActivity extends PreferenceActivity {
28 
29     @Override
onCreate(Bundle icicle)30     protected void onCreate(Bundle icicle) {
31         super.onCreate(icicle);
32         getWindow().addSystemFlags(
33                 android.view.WindowManager.LayoutParams
34                         .SYSTEM_FLAG_HIDE_NON_SYSTEM_OVERLAY_WINDOWS);
35         final ActionBar actionBar = getActionBar();
36         if (actionBar != null) {
37             actionBar.setTitle(R.string.phone_accounts);
38         }
39         getFragmentManager().beginTransaction().replace(
40                 android.R.id.content, new PhoneAccountSettingsFragment()).commit();
41     }
42 
43     @Override
onOptionsItemSelected(MenuItem item)44     public boolean onOptionsItemSelected(MenuItem item) {
45         if (item.getItemId() == android.R.id.home) {
46             onBackPressed();
47             return true;
48         }
49         return super.onOptionsItemSelected(item);
50     }
51 }
52