2013-07-08 16:29:28 -07:00
|
|
|
package org.thoughtcrime.securesms;
|
|
|
|
|
|
|
|
import android.os.Bundle;
|
2014-06-28 20:40:57 -07:00
|
|
|
import android.support.v7.app.ActionBarActivity;
|
2013-07-08 16:29:28 -07:00
|
|
|
import android.view.View;
|
|
|
|
import android.widget.Button;
|
|
|
|
|
|
|
|
|
2015-02-08 13:53:12 -08:00
|
|
|
public class RegistrationProblemsActivity extends BaseActionBarActivity {
|
2013-07-08 16:29:28 -07: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();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|