/* * Copyright (C) 2016 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License */ package com.example.android.supportpreference; import android.app.Activity; import android.app.Fragment; import android.os.Bundle; import android.support.v14.preference.PreferenceDialogFragment; import android.support.v14.preference.PreferenceFragment; import android.support.v17.preference.LeanbackPreferenceFragment; import android.support.v17.preference.LeanbackSettingsFragment; import android.support.v7.preference.Preference; import android.support.v7.preference.PreferenceScreen; public class FragmentSupportPreferencesLeanback extends Activity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); // Display the fragment as the main content. getFragmentManager().beginTransaction().replace(android.R.id.content, new SettingsFragment()).commit(); } //BEGIN_INCLUDE(support_fragment_leanback) public static class SettingsFragment extends LeanbackSettingsFragment { @Override public void onPreferenceStartInitialScreen() { startPreferenceFragment(new PrefsFragment()); } @Override public boolean onPreferenceStartFragment(PreferenceFragment caller, Preference pref) { final Fragment f = Fragment.instantiate(getActivity(), pref.getFragment(), pref.getExtras()); f.setTargetFragment(caller, 0); if (f instanceof PreferenceFragment || f instanceof PreferenceDialogFragment) { startPreferenceFragment(f); } else { startImmersiveFragment(f); } return true; } @Override public boolean onPreferenceStartScreen(PreferenceFragment caller, PreferenceScreen pref) { final Fragment f = new PrefsFragment(); final Bundle args = new Bundle(1); args.putString(PreferenceFragment.ARG_PREFERENCE_ROOT, pref.getKey()); f.setArguments(args); startPreferenceFragment(f); return true; } } public static class PrefsFragment extends LeanbackPreferenceFragment { @Override public void onCreatePreferences(Bundle savedInstanceState, String rootKey) { // Load the preferences from an XML resource setPreferencesFromResource(R.xml.preferences, rootKey); } } //END_INCLUDE(support_fragment_leanback) }