/* * Copyright (C) 2018 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.android.tv.settings.connectivity; import android.content.Context; import android.os.Bundle; import androidx.fragment.app.Fragment; import androidx.fragment.app.FragmentActivity; import androidx.leanback.widget.GuidanceStylist; import androidx.leanback.widget.GuidedAction; import androidx.lifecycle.ViewModelProviders; import com.android.tv.settings.R; import com.android.tv.settings.connectivity.setup.WifiConnectivityGuidedStepFragment; import com.android.tv.settings.connectivity.util.State; import com.android.tv.settings.connectivity.util.StateMachine; import java.util.List; /** * State responsible for showing the save failure page. */ public class SaveFailedState implements State { private final FragmentActivity mActivity; private Fragment mFragment; public SaveFailedState(FragmentActivity activity) { mActivity = activity; } @Override public void processForward() { mFragment = new SaveFailedFragment(); FragmentChangeListener listener = (FragmentChangeListener) mActivity; if (listener != null) { listener.onFragmentChange(mFragment, true); } } @Override public void processBackward() { StateMachine sm = ViewModelProviders.of(mActivity).get(StateMachine.class); sm.back(); } @Override public Fragment getFragment() { return mFragment; } /** * Fragment that needs user to enter dns1. */ public static class SaveFailedFragment extends WifiConnectivityGuidedStepFragment { private StateMachine mStateMachine; @Override public GuidanceStylist.Guidance onCreateGuidance(Bundle savedInstanceState) { return new GuidanceStylist.Guidance( getString(R.string.title_wifi_could_not_save), null, null, null); } @Override public void onCreate(Bundle savedInstanceState) { mStateMachine = ViewModelProviders .of(getActivity()) .get(StateMachine.class); super.onCreate(savedInstanceState); } @Override public void onCreateActions(List actions, Bundle savedInstanceState) { Context context = getActivity(); actions.add(new GuidedAction.Builder(context) .title(getString(R.string.wifi_action_ok)) .id(GuidedAction.ACTION_ID_CONTINUE) .build()); } @Override public void onGuidedActionClicked(GuidedAction action) { if (action.getId() == GuidedAction.ACTION_ID_CONTINUE) { mStateMachine.getListener().onComplete(StateMachine.FAIL); } } } }