mirror of
https://github.com/oxen-io/session-android.git
synced 2024-11-25 02:55:23 +00:00
7df49811b7
// FREEBIE
25 lines
642 B
Java
25 lines
642 B
Java
package org.thoughtcrime.securesms;
|
|
|
|
import android.os.Bundle;
|
|
import android.support.v7.app.ActionBarActivity;
|
|
import android.view.View;
|
|
import android.widget.Button;
|
|
|
|
|
|
public class RegistrationProblemsActivity extends ActionBarActivity {
|
|
|
|
@Override
|
|
public void onCreate(Bundle bundle) {
|
|
super.onCreate(bundle);
|
|
setContentView(R.layout.registration_problems);
|
|
setTitle(getString(R.string.RegistrationProblemsActivity_possible_problems));
|
|
|
|
((Button)findViewById(R.id.close_button)).setOnClickListener(new View.OnClickListener() {
|
|
@Override
|
|
public void onClick(View v) {
|
|
finish();
|
|
}
|
|
});
|
|
}
|
|
}
|