mirror of
https://github.com/oxen-io/session-android.git
synced 2025-04-04 00:25:39 +00:00
turn RegistrationProblemsActivity into a dialog
// FREEBIE
This commit is contained in:
parent
720521d020
commit
fab2296927
@ -50,10 +50,6 @@
|
|||||||
<meta-data android:name="org.thoughtcrime.securesms.mms.TextSecureGlideModule"
|
<meta-data android:name="org.thoughtcrime.securesms.mms.TextSecureGlideModule"
|
||||||
android:value="GlideModule" />
|
android:value="GlideModule" />
|
||||||
|
|
||||||
<activity android:name=".RegistrationProblemsActivity"
|
|
||||||
android:theme="@style/Theme.AppCompat.Light.DialogWhenLarge"
|
|
||||||
android:configChanges="touchscreen|keyboard|keyboardHidden|orientation|screenLayout|screenSize"/>
|
|
||||||
|
|
||||||
<activity android:name=".CountrySelectionActivity"
|
<activity android:name=".CountrySelectionActivity"
|
||||||
android:configChanges="touchscreen|keyboard|keyboardHidden|orientation|screenLayout|screenSize"/>
|
android:configChanges="touchscreen|keyboard|keyboardHidden|orientation|screenLayout|screenSize"/>
|
||||||
|
|
||||||
|
@ -1,22 +1,8 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
android:layout_width="fill_parent"
|
android:layout_width="fill_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:paddingLeft="16dip"
|
android:orientation="vertical">
|
||||||
android:paddingRight="10dip"
|
|
||||||
android:baselineAligned="false">
|
|
||||||
|
|
||||||
<ScrollView android:layout_alignParentTop="true"
|
|
||||||
android:layout_above="@+id/button_frame"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:layout_width="fill_parent"
|
|
||||||
android:paddingTop="5dip"
|
|
||||||
android:paddingBottom="12dip">
|
|
||||||
|
|
||||||
<LinearLayout
|
|
||||||
android:orientation="vertical"
|
|
||||||
android:layout_width="match_parent"
|
|
||||||
android:layout_height="wrap_content">
|
|
||||||
|
|
||||||
<TextView
|
<TextView
|
||||||
style="@style/Registration.Description"
|
style="@style/Registration.Description"
|
||||||
@ -119,22 +105,3 @@
|
|||||||
</TableRow>
|
</TableRow>
|
||||||
</TableLayout>
|
</TableLayout>
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
</ScrollView>
|
|
||||||
|
|
||||||
<LinearLayout android:id="@+id/button_frame"
|
|
||||||
android:layout_alignParentBottom="true"
|
|
||||||
android:layout_width="fill_parent"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:minHeight="54dip"
|
|
||||||
android:orientation="vertical"
|
|
||||||
android:gravity="center">
|
|
||||||
|
|
||||||
<Button android:id="@+id/close_button"
|
|
||||||
android:layout_width="fill_parent"
|
|
||||||
android:layout_gravity="center"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:paddingLeft="10dip"
|
|
||||||
android:paddingRight="10dip"
|
|
||||||
android:text="@android:string/ok"/>
|
|
||||||
</LinearLayout>
|
|
||||||
</RelativeLayout>
|
|
@ -1,24 +0,0 @@
|
|||||||
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 BaseActionBarActivity {
|
|
||||||
|
|
||||||
@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();
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
@ -31,6 +31,8 @@ import android.widget.TextView;
|
|||||||
import android.widget.Toast;
|
import android.widget.Toast;
|
||||||
|
|
||||||
|
|
||||||
|
import com.afollestad.materialdialogs.MaterialDialog;
|
||||||
|
|
||||||
import org.thoughtcrime.securesms.crypto.MasterSecret;
|
import org.thoughtcrime.securesms.crypto.MasterSecret;
|
||||||
import org.thoughtcrime.securesms.push.TextSecureCommunicationFactory;
|
import org.thoughtcrime.securesms.push.TextSecureCommunicationFactory;
|
||||||
import org.thoughtcrime.securesms.service.KeyCachingService;
|
import org.thoughtcrime.securesms.service.KeyCachingService;
|
||||||
@ -171,9 +173,11 @@ public class RegistrationProgressActivity extends BaseActionBarActivity {
|
|||||||
spannableString.setSpan(new ClickableSpan() {
|
spannableString.setSpan(new ClickableSpan() {
|
||||||
@Override
|
@Override
|
||||||
public void onClick(View widget) {
|
public void onClick(View widget) {
|
||||||
Intent intent = new Intent(RegistrationProgressActivity.this,
|
new MaterialDialog.Builder(RegistrationProgressActivity.this)
|
||||||
RegistrationProblemsActivity.class);
|
.title(R.string.RegistrationProblemsActivity_possible_problems)
|
||||||
startActivity(intent);
|
.customView(R.layout.registration_problems, true)
|
||||||
|
.neutralText(android.R.string.ok)
|
||||||
|
.show();
|
||||||
}
|
}
|
||||||
}, pretext.length() + 1, spannableString.length(), Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
|
}, pretext.length() + 1, spannableString.length(), Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user