Add a Wi-Fi dialog activity that can be started by setup wizard to connect to a Wi-Fi access point. Also refactored mEdit and mModify in WifiConfigController into an int-enum mMode, with modes view, connect and modify. This is how the new modes maps to the old flags: MODE_VIEW -- mEdit = false, mModify = * MODE_CONNECT -- mEdit = true, mModify = false MODE_MODIFY -- mEdit = true, mModify = true Bug: 23426311 Change-Id: I8e2221fd3c42577068e07686dab245dd5888e0ae
59 lines
1.9 KiB
Java
59 lines
1.9 KiB
Java
/*
|
|
* Copyright (C) 2010 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.settings.wifi;
|
|
|
|
import android.content.Context;
|
|
import android.view.LayoutInflater;
|
|
import android.widget.Button;
|
|
|
|
/**
|
|
* Foundation interface glues between Activities and UIs like {@link WifiDialog}.
|
|
*/
|
|
public interface WifiConfigUiBase {
|
|
|
|
/**
|
|
* Viewing mode for a Wi-Fi access point. Data is displayed in non-editable mode.
|
|
*/
|
|
int MODE_VIEW = 0;
|
|
/**
|
|
* Connect mode. Data is displayed in editable mode, and a connect button will be shown.
|
|
*/
|
|
int MODE_CONNECT = 1;
|
|
/**
|
|
* Modify mode. All data is displayed in editable fields, and a "save" button is shown instead
|
|
* of "connect". Clients are expected to only save but not connect to the access point in this
|
|
* mode.
|
|
*/
|
|
int MODE_MODIFY = 2;
|
|
|
|
public Context getContext();
|
|
public WifiConfigController getController();
|
|
public LayoutInflater getLayoutInflater();
|
|
public int getMode();
|
|
|
|
public void dispatchSubmit();
|
|
|
|
public void setTitle(int id);
|
|
public void setTitle(CharSequence title);
|
|
|
|
public void setSubmitButton(CharSequence text);
|
|
public void setForgetButton(CharSequence text);
|
|
public void setCancelButton(CharSequence text);
|
|
public Button getSubmitButton();
|
|
public Button getForgetButton();
|
|
public Button getCancelButton();
|
|
} |