blob: 3765452e0fc8348d5f4c9166e5c222d9a2bb50f4 [file] [log] [blame]
The Android Open Source Project0c908882009-03-03 19:32:16 -08001/*
2 * Copyright (C) 2008 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
Bijan Amirzada41242f22014-03-21 12:12:18 -070017package com.android.browser;
The Android Open Source Project0c908882009-03-03 19:32:16 -080018
Pankaj Gargb3b57462014-11-18 17:28:30 -080019import android.app.Activity;
Ben Murdoch7ed9bd72010-12-13 14:30:33 +000020import android.os.Bundle;
Bjorn Bringertd69f51d2010-09-13 14:06:41 +010021
Pankaj Gargb3b57462014-11-18 17:28:30 -080022import com.android.browser.preferences.GeneralPreferencesFragment;
John Reck7b182d72011-07-08 10:30:53 -070023
Pankaj Gargb3b57462014-11-18 17:28:30 -080024public class BrowserPreferencesPage extends Activity {
The Android Open Source Project0c908882009-03-03 19:32:16 -080025
Jeff Hamilton462b8e82010-09-23 14:33:43 -050026 public static final String CURRENT_PAGE = "currentPage";
Nicolas Roard78a98e42009-05-11 13:34:17 +010027
Ben Murdoch7ed9bd72010-12-13 14:30:33 +000028 @Override
29 public void onCreate(Bundle icicle) {
30 super.onCreate(icicle);
31
Pankaj Gargb3b57462014-11-18 17:28:30 -080032 getFragmentManager().beginTransaction().replace(android.R.id.content,
33 new GeneralPreferencesFragment()).commit();
Ben Murdoch7ed9bd72010-12-13 14:30:33 +000034 }
The Android Open Source Project0c908882009-03-03 19:32:16 -080035}