android: set view listener in onCreate

This commit is contained in:
tmoldovan8x8 2020-05-13 11:56:37 +03:00 committed by GitHub
parent 76e1217439
commit 07f64d94c0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 5 deletions

View File

@ -16,11 +16,11 @@
package org.jitsi.meet.sdk; package org.jitsi.meet.sdk;
import android.annotation.SuppressLint;
import android.content.Context; import android.content.Context;
import android.content.Intent; import android.content.Intent;
import android.net.Uri; import android.net.Uri;
import android.os.Bundle; import android.os.Bundle;
import androidx.annotation.Nullable; import androidx.annotation.Nullable;
import androidx.fragment.app.FragmentActivity; import androidx.fragment.app.FragmentActivity;
@ -68,6 +68,9 @@ public class JitsiMeetActivity extends FragmentActivity
setContentView(R.layout.activity_jitsi_meet); setContentView(R.layout.activity_jitsi_meet);
// Listen for conference events.
getJitsiView().setListener(this);
if (!extraInitialize()) { if (!extraInitialize()) {
initialize(); initialize();
} }
@ -152,9 +155,6 @@ public class JitsiMeetActivity extends FragmentActivity
} }
protected void initialize() { protected void initialize() {
// Listen for conference events.
getJitsiView().setListener(this);
// Join the room specified by the URL the app was launched with. // Join the room specified by the URL the app was launched with.
// Joining without the room option displays the welcome page. // Joining without the room option displays the welcome page.
join(getConferenceOptions(getIntent())); join(getConferenceOptions(getIntent()));
@ -163,9 +163,10 @@ public class JitsiMeetActivity extends FragmentActivity
// Activity lifecycle methods // Activity lifecycle methods
// //
@SuppressLint("MissingSuperCall")
@Override @Override
public void onActivityResult(int requestCode, int resultCode, Intent data) { public void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);
JitsiMeetActivityDelegate.onActivityResult(this, requestCode, resultCode, data); JitsiMeetActivityDelegate.onActivityResult(this, requestCode, resultCode, data);
} }