2013-07-08 23:29:28 +00:00
|
|
|
package org.thoughtcrime.securesms;
|
|
|
|
|
|
|
|
import android.os.Bundle;
|
2014-06-29 03:40:57 +00:00
|
|
|
import android.support.v7.app.ActionBarActivity;
|
2013-07-08 23:29:28 +00:00
|
|
|
import android.view.View;
|
|
|
|
import android.widget.Button;
|
|
|
|
|
|
|
|
|
2014-06-29 03:40:57 +00:00
|
|
|
public class RegistrationProblemsActivity extends ActionBarActivity {
|
2013-07-08 23:29:28 +00:00
|
|
|
|
|
|
|
@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();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|