mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-17 11:28:06 +00:00
100 lines
2.9 KiB
Java
100 lines
2.9 KiB
Java
package org.linphone.tutorials;
|
|
|
|
/*
|
|
TutorialChatRoomActivity.java
|
|
Copyright (C) 2017 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
*/
|
|
|
|
import android.app.Activity;
|
|
import android.os.Bundle;
|
|
import android.os.Handler;
|
|
import android.view.View;
|
|
import android.widget.Button;
|
|
import android.widget.TextView;
|
|
|
|
import org.linphone.R;
|
|
import org.linphone.core.CoreException;
|
|
import org.linphone.core.tutorials.TutorialChatRoom;
|
|
import org.linphone.core.tutorials.TutorialNotifier;
|
|
import org.linphone.mediastream.Log;
|
|
|
|
/**
|
|
* Activity for displaying and starting the chatroom example on Android phone.
|
|
*
|
|
*/
|
|
public class TutorialChatRoomActivity extends Activity {
|
|
|
|
private static final String defaultSipAddress = "sip:";
|
|
private TextView sipAddressWidget;
|
|
private TutorialChatRoom tutorial;
|
|
private Handler mHandler = new Handler() ;
|
|
private Button buttonCall;
|
|
|
|
@Override
|
|
protected void onCreate(Bundle savedInstanceState) {
|
|
super.onCreate(savedInstanceState);
|
|
setContentView(R.layout.hello_world);
|
|
sipAddressWidget = (TextView) findViewById(R.id.AddressId);
|
|
sipAddressWidget.setText(defaultSipAddress);
|
|
|
|
// Output text to the outputText widget
|
|
final TextView outputText = (TextView) findViewById(R.id.OutputText);
|
|
final TutorialNotifier notifier = new AndroidTutorialNotifier(mHandler, outputText);
|
|
|
|
|
|
// Create HelloWorld object
|
|
tutorial = new TutorialChatRoom(notifier);
|
|
|
|
|
|
|
|
// Assign call action to call button
|
|
buttonCall = (Button) findViewById(R.id.CallButton);
|
|
buttonCall.setOnClickListener(new View.OnClickListener() {
|
|
public void onClick(View v) {
|
|
TutorialLaunchingThread thread = new TutorialLaunchingThread();
|
|
buttonCall.setEnabled(false);
|
|
thread.start();
|
|
}
|
|
});
|
|
|
|
// Assign stop action to stop button
|
|
Button buttonStop = (Button) findViewById(R.id.ButtonStop);
|
|
buttonStop.setOnClickListener(new View.OnClickListener() {
|
|
public void onClick(View v) {
|
|
tutorial.stopMainLoop();
|
|
}
|
|
});
|
|
}
|
|
|
|
|
|
private class TutorialLaunchingThread extends Thread {
|
|
@Override
|
|
public void run() {
|
|
super.run();
|
|
try {
|
|
tutorial.launchTutorial(sipAddressWidget.getText().toString());
|
|
mHandler.post(new Runnable() {
|
|
public void run() {
|
|
buttonCall.setEnabled(true);
|
|
}
|
|
});
|
|
} catch (CoreException e) {
|
|
Log.e(e);
|
|
}
|
|
}
|
|
}
|
|
}
|