
- Add HUD fragment with HUD related controls and more HUD statistics. - Create and set all peer connection constraints in PeerConnectionClient class. - Handle registration request in web socket class internally once web socket connection is opened. R=wzh@webrtc.org Review URL: https://webrtc-codereview.appspot.com/44669004 Cr-Commit-Position: refs/heads/master@{#8762} git-svn-id: http://webrtc.googlecode.com/svn/trunk@8762 4adac7df-926f-26a2-2b94-8c16560cd09d
136 lines
4.5 KiB
Java
136 lines
4.5 KiB
Java
/*
|
|
* libjingle
|
|
* Copyright 2015 Google Inc.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions are met:
|
|
*
|
|
* 1. Redistributions of source code must retain the above copyright notice,
|
|
* this list of conditions and the following disclaimer.
|
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
|
* this list of conditions and the following disclaimer in the documentation
|
|
* and/or other materials provided with the distribution.
|
|
* 3. The name of the author may not be used to endorse or promote products
|
|
* derived from this software without specific prior written permission.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
|
|
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
|
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
|
|
* EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
|
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
|
|
* OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
|
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
|
* OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
|
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
*/
|
|
|
|
package org.appspot.apprtc;
|
|
|
|
import android.app.Activity;
|
|
import android.app.Fragment;
|
|
import android.os.Bundle;
|
|
import android.view.LayoutInflater;
|
|
import android.view.View;
|
|
import android.view.ViewGroup;
|
|
import android.widget.ImageButton;
|
|
import android.widget.TextView;
|
|
|
|
import org.webrtc.VideoRendererGui.ScalingType;
|
|
|
|
/**
|
|
* Fragment for call control.
|
|
*/
|
|
public class CallFragment extends Fragment {
|
|
private View controlView;
|
|
private TextView contactView;
|
|
private ImageButton disconnectButton;
|
|
private ImageButton cameraSwitchButton;
|
|
private ImageButton videoScalingButton;
|
|
private OnCallEvents callEvents;
|
|
private ScalingType scalingType;
|
|
private boolean videoCallEnabled = true;
|
|
|
|
/**
|
|
* Call control interface for container activity.
|
|
*/
|
|
public interface OnCallEvents {
|
|
public void onCallHangUp();
|
|
public void onCameraSwitch();
|
|
public void onVideoScalingSwitch(ScalingType scalingType);
|
|
}
|
|
|
|
@Override
|
|
public View onCreateView(LayoutInflater inflater, ViewGroup container,
|
|
Bundle savedInstanceState) {
|
|
controlView =
|
|
inflater.inflate(R.layout.fragment_call, container, false);
|
|
|
|
// Create UI controls.
|
|
contactView =
|
|
(TextView) controlView.findViewById(R.id.contact_name_call);
|
|
disconnectButton =
|
|
(ImageButton) controlView.findViewById(R.id.button_call_disconnect);
|
|
cameraSwitchButton =
|
|
(ImageButton) controlView.findViewById(R.id.button_call_switch_camera);
|
|
videoScalingButton =
|
|
(ImageButton) controlView.findViewById(R.id.button_call_scaling_mode);
|
|
|
|
// Add buttons click events.
|
|
disconnectButton.setOnClickListener(new View.OnClickListener() {
|
|
@Override
|
|
public void onClick(View view) {
|
|
callEvents.onCallHangUp();
|
|
}
|
|
});
|
|
|
|
cameraSwitchButton.setOnClickListener(new View.OnClickListener() {
|
|
@Override
|
|
public void onClick(View view) {
|
|
callEvents.onCameraSwitch();
|
|
}
|
|
});
|
|
|
|
videoScalingButton.setOnClickListener(new View.OnClickListener() {
|
|
@Override
|
|
public void onClick(View view) {
|
|
if (scalingType == ScalingType.SCALE_ASPECT_FILL) {
|
|
videoScalingButton.setBackgroundResource(
|
|
R.drawable.ic_action_full_screen);
|
|
scalingType = ScalingType.SCALE_ASPECT_FIT;
|
|
} else {
|
|
videoScalingButton.setBackgroundResource(
|
|
R.drawable.ic_action_return_from_full_screen);
|
|
scalingType = ScalingType.SCALE_ASPECT_FILL;
|
|
}
|
|
callEvents.onVideoScalingSwitch(scalingType);
|
|
}
|
|
});
|
|
scalingType = ScalingType.SCALE_ASPECT_FILL;
|
|
|
|
return controlView;
|
|
}
|
|
|
|
@Override
|
|
public void onStart() {
|
|
super.onStart();
|
|
|
|
Bundle args = getArguments();
|
|
if (args != null) {
|
|
String contactName = args.getString(CallActivity.EXTRA_ROOMID);
|
|
contactView.setText(contactName);
|
|
videoCallEnabled = args.getBoolean(CallActivity.EXTRA_VIDEO_CALL, true);
|
|
}
|
|
if (!videoCallEnabled) {
|
|
cameraSwitchButton.setVisibility(View.INVISIBLE);
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public void onAttach(Activity activity) {
|
|
super.onAttach(activity);
|
|
callEvents = (OnCallEvents) activity;
|
|
}
|
|
|
|
}
|