blob: c7b9dcdd915661940e8964ab66771a46c6fb0545 [file] [log] [blame]
Tadashi G. Takaokac206d042012-04-13 19:53:44 +09001/*
2 * Copyright (C) 2012 The Android Open Source Project
3 *
Tadashi G. Takaoka8aa99632013-01-21 21:52:57 +09004 * 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
Tadashi G. Takaokac206d042012-04-13 19:53:44 +09007 *
Tadashi G. Takaoka8aa99632013-01-21 21:52:57 +09008 * http://www.apache.org/licenses/LICENSE-2.0
Tadashi G. Takaokac206d042012-04-13 19:53:44 +09009 *
10 * Unless required by applicable law or agreed to in writing, software
Tadashi G. Takaoka8aa99632013-01-21 21:52:57 +090011 * 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.
Tadashi G. Takaokac206d042012-04-13 19:53:44 +090015 */
16
Ken Wakasaa7d2fc62013-07-22 12:43:37 +090017package com.android.inputmethod.latin.settings;
Tadashi G. Takaokac206d042012-04-13 19:53:44 +090018
Satoshi Kataoka64f64bd2013-10-09 14:19:24 +090019import com.android.inputmethod.latin.utils.FragmentUtils;
20
Tadashi G. Takaokac206d042012-04-13 19:53:44 +090021import android.content.Intent;
Tadashi G. Takaokac206d042012-04-13 19:53:44 +090022import android.preference.PreferenceActivity;
23
Tadashi G. Takaokaa28a05e2012-09-27 18:16:16 +090024public final class SettingsActivity extends PreferenceActivity {
Tadashi G. Takaokacbee8a32013-01-08 15:41:46 +090025 private static final String DEFAULT_FRAGMENT = SettingsFragment.class.getName();
Tadashi G. Takaokac27fe622012-04-13 16:41:24 +090026
Tadashi G. Takaokac206d042012-04-13 19:53:44 +090027 @Override
28 public Intent getIntent() {
Tadashi G. Takaokac27fe622012-04-13 16:41:24 +090029 final Intent intent = super.getIntent();
Tadashi G. Takaoka262d5bd2013-04-10 16:21:20 +090030 final String fragment = intent.getStringExtra(EXTRA_SHOW_FRAGMENT);
31 if (fragment == null) {
32 intent.putExtra(EXTRA_SHOW_FRAGMENT, DEFAULT_FRAGMENT);
33 }
Tadashi G. Takaokac27fe622012-04-13 16:41:24 +090034 intent.putExtra(EXTRA_NO_HEADERS, true);
35 return intent;
Tadashi G. Takaokac206d042012-04-13 19:53:44 +090036 }
Satoshi Kataokac5182c92013-10-02 15:39:25 +090037
Tadashi G. Takaokabfcd98e2014-07-23 17:08:18 -070038 @Override
Satoshi Kataokac5182c92013-10-02 15:39:25 +090039 public boolean isValidFragment(String fragmentName) {
Satoshi Kataoka64f64bd2013-10-09 14:19:24 +090040 return FragmentUtils.isValidFragment(fragmentName);
Satoshi Kataokac5182c92013-10-02 15:39:25 +090041 }
Tadashi G. Takaokac206d042012-04-13 19:53:44 +090042}