• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (C) 2018 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.car.settings.home;
18 
19 import android.content.Context;
20 
21 import androidx.annotation.XmlRes;
22 
23 import com.android.car.settings.R;
24 import com.android.car.settings.common.SettingsFragment;
25 
26 /**
27  * Homepage for settings for car.
28  */
29 public class HomepageFragment extends SettingsFragment {
30 
31     @Override
32     @XmlRes
getPreferenceScreenResId()33     protected int getPreferenceScreenResId() {
34         return R.xml.homepage_fragment;
35     }
36 
37     @Override
onAttach(Context context)38     public void onAttach(Context context) {
39         super.onAttach(context);
40         // TODO: Re-enable suggestions once more use cases are supported.
41         // use(SuggestionsPreferenceController.class, R.string.pk_suggestions).setLoaderManager(
42         //        LoaderManager.getInstance(/* owner= */ this));
43     }
44 }
45