mirror of
https://github.com/oxen-io/session-android.git
synced 2024-11-25 11:05:25 +00:00
34 lines
924 B
Java
34 lines
924 B
Java
package org.thoughtcrime.securesms;
|
|
|
|
import android.content.Intent;
|
|
import android.os.Bundle;
|
|
import android.widget.Button;
|
|
|
|
import org.thoughtcrime.securesms.preferences.MmsPreferencesActivity;
|
|
|
|
import network.loki.messenger.R;
|
|
|
|
public class PromptMmsActivity extends PassphraseRequiredActionBarActivity {
|
|
|
|
@Override
|
|
protected void onCreate(Bundle bundle, boolean ready) {
|
|
setContentView(R.layout.prompt_apn_activity);
|
|
initializeResources();
|
|
}
|
|
|
|
private void initializeResources() {
|
|
Button okButton = findViewById(R.id.ok_button);
|
|
Button cancelButton = findViewById(R.id.cancel_button);
|
|
|
|
okButton.setOnClickListener(v -> {
|
|
Intent intent = new Intent(PromptMmsActivity.this, MmsPreferencesActivity.class);
|
|
intent.putExtras(PromptMmsActivity.this.getIntent().getExtras());
|
|
startActivity(intent);
|
|
finish();
|
|
});
|
|
|
|
cancelButton.setOnClickListener(v -> finish());
|
|
}
|
|
|
|
}
|