@@ -3,7 +3,6 @@ package com.chatrtc.app;
|
||||
import android.os.Bundle;
|
||||
import android.text.TextUtils;
|
||||
import android.util.Log;
|
||||
import android.view.View;
|
||||
import android.widget.Button;
|
||||
import android.widget.EditText;
|
||||
import android.widget.ImageButton;
|
||||
@@ -16,9 +15,9 @@ import androidx.recyclerview.widget.RecyclerView;
|
||||
import com.chatrtc.app.adapter.ChatAdapter;
|
||||
import com.chatrtc.app.model.ChatMessage;
|
||||
import com.chatrtc.app.webrtc.WebRTCManager;
|
||||
import com.vanniktech.emoji.EmojiManager;
|
||||
import com.vanniktech.emoji.EmojiPopup;
|
||||
import com.vanniktech.emoji.google.GoogleEmojiProvider;
|
||||
|
||||
import androidx.emoji2.text.EmojiCompat;
|
||||
import androidx.emoji2.bundled.BundledEmojiCompatConfig;
|
||||
|
||||
import org.webrtc.SurfaceViewRenderer;
|
||||
|
||||
@@ -44,17 +43,18 @@ public class ChatActivity extends AppCompatActivity implements WebRTCManager.Web
|
||||
private List<ChatMessage> chatMessages;
|
||||
private String nickname;
|
||||
private WebRTCManager webRTCManager;
|
||||
private EmojiPopup emojiPopup;
|
||||
|
||||
private boolean isVideoEnabled = true;
|
||||
private boolean isAudioEnabled = true;
|
||||
private boolean isConnected = false;
|
||||
|
||||
@Override
|
||||
protected void onCreate(Bundle savedInstanceState) {
|
||||
super.onCreate(savedInstanceState);
|
||||
|
||||
// Initialize emoji support
|
||||
EmojiManager.install(new GoogleEmojiProvider());
|
||||
// Initialize emoji support using androidx
|
||||
EmojiCompat.Config config = new BundledEmojiCompatConfig(this);
|
||||
EmojiCompat.init(config);
|
||||
|
||||
setContentView(R.layout.activity_chat);
|
||||
|
||||
@@ -68,14 +68,11 @@ public class ChatActivity extends AppCompatActivity implements WebRTCManager.Web
|
||||
initViews();
|
||||
setupRecyclerView();
|
||||
setupClickListeners();
|
||||
setupEmojiPopup();
|
||||
|
||||
// Initialize WebRTC
|
||||
// Initialize WebRTC for both messaging and video calling
|
||||
webRTCManager = new WebRTCManager(this, this);
|
||||
webRTCManager.initializeWebRTC(localVideoView, remoteVideoView);
|
||||
webRTCManager.connectToSignalingServer();
|
||||
|
||||
// Join chat room
|
||||
webRTCManager.joinRoom(nickname);
|
||||
|
||||
// Add welcome message
|
||||
@@ -106,25 +103,16 @@ public class ChatActivity extends AppCompatActivity implements WebRTCManager.Web
|
||||
private void setupClickListeners() {
|
||||
btnSend.setOnClickListener(v -> sendMessage());
|
||||
|
||||
btnToggleVideo.setOnClickListener(v -> toggleVideo());
|
||||
|
||||
btnToggleAudio.setOnClickListener(v -> toggleAudio());
|
||||
|
||||
btnSwitchCamera.setOnClickListener(v -> webRTCManager.switchCamera());
|
||||
|
||||
etMessage.setOnEditorActionListener((v, actionId, event) -> {
|
||||
sendMessage();
|
||||
return true;
|
||||
// Simple emoji button - adds a smiley face
|
||||
btnEmoji.setOnClickListener(v -> {
|
||||
String currentText = etMessage.getText().toString();
|
||||
etMessage.setText(currentText + "😊");
|
||||
etMessage.setSelection(etMessage.getText().length());
|
||||
});
|
||||
}
|
||||
|
||||
private void setupEmojiPopup() {
|
||||
emojiPopup = EmojiPopup.Builder.fromRootView(findViewById(android.R.id.content))
|
||||
.setOnEmojiPopupShownListener(() -> btnEmoji.setImageResource(R.drawable.ic_keyboard))
|
||||
.setOnEmojiPopupDismissListener(() -> btnEmoji.setImageResource(R.drawable.ic_emoji))
|
||||
.build(etMessage);
|
||||
|
||||
btnEmoji.setOnClickListener(v -> emojiPopup.toggle());
|
||||
btnToggleVideo.setOnClickListener(v -> toggleVideo());
|
||||
btnToggleAudio.setOnClickListener(v -> toggleAudio());
|
||||
btnSwitchCamera.setOnClickListener(v -> switchCamera());
|
||||
}
|
||||
|
||||
private void sendMessage() {
|
||||
@@ -133,11 +121,23 @@ public class ChatActivity extends AppCompatActivity implements WebRTCManager.Web
|
||||
return;
|
||||
}
|
||||
|
||||
if (!isConnected) {
|
||||
Toast.makeText(this, "Not connected to chat server", Toast.LENGTH_SHORT).show();
|
||||
return;
|
||||
}
|
||||
|
||||
ChatMessage chatMessage = new ChatMessage(nickname, message, new Date(), true);
|
||||
addMessage(chatMessage);
|
||||
|
||||
// Send message through WebRTC data channel
|
||||
webRTCManager.sendMessage(message);
|
||||
// Send message through WebRTC DataChannel
|
||||
try {
|
||||
if (webRTCManager != null) {
|
||||
webRTCManager.sendMessage(message);
|
||||
}
|
||||
} catch (Exception e) {
|
||||
Log.e(TAG, "Error sending message", e);
|
||||
Toast.makeText(this, "Failed to send message", Toast.LENGTH_SHORT).show();
|
||||
}
|
||||
|
||||
etMessage.setText("");
|
||||
}
|
||||
@@ -156,7 +156,9 @@ public class ChatActivity extends AppCompatActivity implements WebRTCManager.Web
|
||||
|
||||
private void toggleVideo() {
|
||||
isVideoEnabled = !isVideoEnabled;
|
||||
webRTCManager.toggleVideo(isVideoEnabled);
|
||||
if (webRTCManager != null) {
|
||||
webRTCManager.toggleVideo(isVideoEnabled);
|
||||
}
|
||||
btnToggleVideo.setText(isVideoEnabled ? "Video Off" : "Video On");
|
||||
btnToggleVideo.setBackgroundColor(getResources().getColor(
|
||||
isVideoEnabled ? R.color.button_enabled : R.color.button_disabled));
|
||||
@@ -164,13 +166,31 @@ public class ChatActivity extends AppCompatActivity implements WebRTCManager.Web
|
||||
|
||||
private void toggleAudio() {
|
||||
isAudioEnabled = !isAudioEnabled;
|
||||
webRTCManager.toggleAudio(isAudioEnabled);
|
||||
if (webRTCManager != null) {
|
||||
webRTCManager.toggleAudio(isAudioEnabled);
|
||||
}
|
||||
btnToggleAudio.setText(isAudioEnabled ? "Mute" : "Unmute");
|
||||
btnToggleAudio.setBackgroundColor(getResources().getColor(
|
||||
isAudioEnabled ? R.color.button_enabled : R.color.button_disabled));
|
||||
}
|
||||
|
||||
// WebRTCListener implementation
|
||||
private void switchCamera() {
|
||||
if (webRTCManager != null) {
|
||||
webRTCManager.switchCamera();
|
||||
}
|
||||
}
|
||||
|
||||
private void updateConnectionStatus() {
|
||||
// Update UI to show connection status
|
||||
String title = "Chat - " + nickname + (isConnected ? " (Connected)" : " (Disconnected)");
|
||||
setTitle(title);
|
||||
|
||||
// Enable/disable send button based on connection
|
||||
btnSend.setEnabled(isConnected);
|
||||
etMessage.setEnabled(isConnected);
|
||||
}
|
||||
|
||||
// WebRTCManager.WebRTCListener implementation
|
||||
@Override
|
||||
public void onMessageReceived(String senderNickname, String message) {
|
||||
runOnUiThread(() -> {
|
||||
@@ -191,18 +211,26 @@ public class ChatActivity extends AppCompatActivity implements WebRTCManager.Web
|
||||
|
||||
@Override
|
||||
public void onConnected() {
|
||||
runOnUiThread(() -> addSystemMessage("Connected to chat"));
|
||||
runOnUiThread(() -> {
|
||||
isConnected = true;
|
||||
addSystemMessage("Connected to chat");
|
||||
updateConnectionStatus();
|
||||
});
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onDisconnected() {
|
||||
runOnUiThread(() -> addSystemMessage("Disconnected from chat"));
|
||||
runOnUiThread(() -> {
|
||||
isConnected = false;
|
||||
addSystemMessage("Disconnected from chat");
|
||||
updateConnectionStatus();
|
||||
});
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onError(String error) {
|
||||
runOnUiThread(() -> {
|
||||
Log.e(TAG, "WebRTC Error: " + error);
|
||||
Log.e(TAG, "Network Error: " + error);
|
||||
Toast.makeText(this, "Error: " + error, Toast.LENGTH_LONG).show();
|
||||
});
|
||||
}
|
||||
@@ -213,17 +241,10 @@ public class ChatActivity extends AppCompatActivity implements WebRTCManager.Web
|
||||
if (webRTCManager != null) {
|
||||
webRTCManager.cleanup();
|
||||
}
|
||||
if (emojiPopup != null && emojiPopup.isShowing()) {
|
||||
emojiPopup.dismiss();
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onBackPressed() {
|
||||
if (emojiPopup != null && emojiPopup.isShowing()) {
|
||||
emojiPopup.dismiss();
|
||||
} else {
|
||||
super.onBackPressed();
|
||||
}
|
||||
super.onBackPressed();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -10,7 +10,6 @@ import androidx.recyclerview.widget.RecyclerView;
|
||||
|
||||
import com.chatrtc.app.R;
|
||||
import com.chatrtc.app.model.ChatMessage;
|
||||
import com.vanniktech.emoji.EmojiTextView;
|
||||
|
||||
import java.text.SimpleDateFormat;
|
||||
import java.util.List;
|
||||
@@ -78,7 +77,7 @@ public class ChatAdapter extends RecyclerView.Adapter<RecyclerView.ViewHolder> {
|
||||
}
|
||||
|
||||
class OwnMessageViewHolder extends RecyclerView.ViewHolder {
|
||||
private EmojiTextView tvMessage;
|
||||
private TextView tvMessage;
|
||||
private TextView tvTime;
|
||||
|
||||
public OwnMessageViewHolder(@NonNull View itemView) {
|
||||
@@ -95,7 +94,7 @@ public class ChatAdapter extends RecyclerView.Adapter<RecyclerView.ViewHolder> {
|
||||
|
||||
class OtherMessageViewHolder extends RecyclerView.ViewHolder {
|
||||
private TextView tvNickname;
|
||||
private EmojiTextView tvMessage;
|
||||
private TextView tvMessage;
|
||||
private TextView tvTime;
|
||||
|
||||
public OtherMessageViewHolder(@NonNull View itemView) {
|
||||
|
||||
@@ -25,7 +25,6 @@ import org.webrtc.SessionDescription;
|
||||
import org.webrtc.SurfaceTextureHelper;
|
||||
import org.webrtc.SurfaceViewRenderer;
|
||||
import org.webrtc.VideoCapturer;
|
||||
import org.webrtc.VideoRenderer;
|
||||
import org.webrtc.VideoSource;
|
||||
import org.webrtc.VideoTrack;
|
||||
|
||||
|
||||
@@ -23,7 +23,7 @@
|
||||
android:textStyle="bold"
|
||||
android:layout_marginBottom="2dp" />
|
||||
|
||||
<com.vanniktech.emoji.EmojiTextView
|
||||
<TextView
|
||||
android:id="@+id/tv_message"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
|
||||
@@ -14,7 +14,7 @@
|
||||
android:background="@drawable/own_message_background"
|
||||
android:padding="12dp">
|
||||
|
||||
<com.vanniktech.emoji.EmojiTextView
|
||||
<TextView
|
||||
android:id="@+id/tv_message"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
|
||||
BIN
android-app/app/src/main/res/mipmap-hdpi/ic_launcher.png
Archivo normal
BIN
android-app/app/src/main/res/mipmap-hdpi/ic_launcher.png
Archivo normal
Archivo binario no mostrado.
|
Después Anchura: | Altura: | Tamaño: 8.8 KiB |
BIN
android-app/app/src/main/res/mipmap-mdpi/ic_launcher.png
Archivo normal
BIN
android-app/app/src/main/res/mipmap-mdpi/ic_launcher.png
Archivo normal
Archivo binario no mostrado.
|
Después Anchura: | Altura: | Tamaño: 8.8 KiB |
BIN
android-app/app/src/main/res/mipmap-xhdpi/ic_launcher.png
Archivo normal
BIN
android-app/app/src/main/res/mipmap-xhdpi/ic_launcher.png
Archivo normal
Archivo binario no mostrado.
|
Después Anchura: | Altura: | Tamaño: 8.8 KiB |
BIN
android-app/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
Archivo normal
BIN
android-app/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
Archivo normal
Archivo binario no mostrado.
|
Después Anchura: | Altura: | Tamaño: 8.8 KiB |
BIN
android-app/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
Archivo normal
BIN
android-app/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
Archivo normal
Archivo binario no mostrado.
|
Después Anchura: | Altura: | Tamaño: 8.2 KiB |
Referencia en una nueva incidencia
Block a user