mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-17 19:38:08 +00:00
81 lines
2.8 KiB
Java
81 lines
2.8 KiB
Java
package org.linphone.assistant;
|
|
/*
|
|
WelcomeFragment.java
|
|
Copyright (C) 2015 Belledonne Communications, Grenoble, France
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU General Public License
|
|
as published by the Free Software Foundation; either version 2
|
|
of the License, or (at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
*/
|
|
import org.linphone.R;
|
|
|
|
import android.app.Fragment;
|
|
import android.os.Bundle;
|
|
import android.view.LayoutInflater;
|
|
import android.view.View;
|
|
import android.view.View.OnClickListener;
|
|
import android.view.ViewGroup;
|
|
import android.widget.Button;
|
|
|
|
/**
|
|
* @author Sylvain Berfini
|
|
*/
|
|
public class WelcomeFragment extends Fragment implements OnClickListener {
|
|
private Button createAccount, logLinphoneAccount, logGenericAccount, remoteProvisioning;
|
|
|
|
@Override
|
|
public View onCreateView(LayoutInflater inflater, ViewGroup container,
|
|
Bundle savedInstanceState) {
|
|
View view = inflater.inflate(R.layout.assistant_welcome, container, false);
|
|
|
|
createAccount = (Button) view.findViewById(R.id.create_account);
|
|
createAccount.setOnClickListener(this);
|
|
|
|
logLinphoneAccount = (Button) view.findViewById(R.id.login_linphone);
|
|
if (getResources().getBoolean(R.bool.hide_linphone_accounts_wizard)) {
|
|
logLinphoneAccount.setVisibility(View.GONE);
|
|
} else {
|
|
logLinphoneAccount.setOnClickListener(this);
|
|
}
|
|
|
|
logGenericAccount = (Button) view.findViewById(R.id.login_generic);
|
|
if (getResources().getBoolean(R.bool.hide_generic_accounts_wizard)) {
|
|
logGenericAccount.setVisibility(View.GONE);
|
|
} else {
|
|
logGenericAccount.setOnClickListener(this);
|
|
}
|
|
|
|
remoteProvisioning = (Button) view.findViewById(R.id.remote_provisioning);
|
|
if (getResources().getBoolean(R.bool.hide_remote_provisioning_in_wizard)) {
|
|
remoteProvisioning.setVisibility(View.GONE);
|
|
} else {
|
|
remoteProvisioning.setOnClickListener(this);
|
|
}
|
|
|
|
return view;
|
|
}
|
|
|
|
@Override
|
|
public void onClick(View v) {
|
|
int id = v.getId();
|
|
if (id == R.id.login_generic) {
|
|
AssistantActivity.instance().displayLoginGeneric();
|
|
} else if (id == R.id.login_linphone) {
|
|
AssistantActivity.instance().displayLoginLinphone();
|
|
} else if (id == R.id.create_account) {
|
|
AssistantActivity.instance().displayCreateAccount();
|
|
} else if (id == R.id.remote_provisioning) {
|
|
AssistantActivity.instance().displayRemoteProvisioning();
|
|
}
|
|
}
|
|
}
|