mirror of
https://github.com/syncthing/syncthing-android.git
synced 2024-11-23 04:41:16 +00:00
* Stopped dialogs from losing state after screen rotation. - Used onSaveIntance() to save dialog state while the activity is being recreated. * Addressed issues raised. - Removed empty lines - Removed Logging - Checked is dialog was null instead of using a boolean to keep track og dialog state. - Changed contants to not include package.
This commit is contained in:
parent
9399762ed9
commit
d296be02e9
5 changed files with 206 additions and 51 deletions
|
@ -1,5 +1,6 @@
|
||||||
package com.nutomic.syncthingandroid.activities;
|
package com.nutomic.syncthingandroid.activities;
|
||||||
|
|
||||||
|
import android.app.Dialog;
|
||||||
import android.content.Context;
|
import android.content.Context;
|
||||||
import android.content.DialogInterface;
|
import android.content.DialogInterface;
|
||||||
import android.content.Intent;
|
import android.content.Intent;
|
||||||
|
@ -15,6 +16,7 @@ import android.util.Log;
|
||||||
import android.view.Menu;
|
import android.view.Menu;
|
||||||
import android.view.MenuItem;
|
import android.view.MenuItem;
|
||||||
import android.view.View;
|
import android.view.View;
|
||||||
|
import android.widget.AdapterView;
|
||||||
import android.widget.CompoundButton;
|
import android.widget.CompoundButton;
|
||||||
import android.widget.EditText;
|
import android.widget.EditText;
|
||||||
import android.widget.TextView;
|
import android.widget.TextView;
|
||||||
|
@ -53,6 +55,9 @@ public class DeviceActivity extends SyncthingActivity implements View.OnClickLis
|
||||||
"com.nutomic.syncthingandroid.activities.DeviceActivity.IS_CREATE";
|
"com.nutomic.syncthingandroid.activities.DeviceActivity.IS_CREATE";
|
||||||
|
|
||||||
private static final String TAG = "DeviceSettingsFragment";
|
private static final String TAG = "DeviceSettingsFragment";
|
||||||
|
private static final String IS_SHOWING_DISCARD_DIALOG = "DISCARD_FOLDER_DIALOG_STATE";
|
||||||
|
private static final String IS_SHOWING_COMPRESSION_DIALOG = "COMPRESSION_FOLDER_DIALOG_STATE";
|
||||||
|
private static final String IS_SHOWING_DELETE_DIALOG = "DELETE_FOLDER_DIALOG_STATE";
|
||||||
|
|
||||||
public static final List<String> DYNAMIC_ADDRESS = Collections.singletonList("dynamic");
|
public static final List<String> DYNAMIC_ADDRESS = Collections.singletonList("dynamic");
|
||||||
|
|
||||||
|
@ -82,11 +87,14 @@ public class DeviceActivity extends SyncthingActivity implements View.OnClickLis
|
||||||
|
|
||||||
private boolean mDeviceNeedsToUpdate;
|
private boolean mDeviceNeedsToUpdate;
|
||||||
|
|
||||||
|
private Dialog mDeleteDialog;
|
||||||
|
private Dialog mDiscardDialog;
|
||||||
|
private Dialog mCompressionDialog;
|
||||||
|
|
||||||
private final DialogInterface.OnClickListener mCompressionEntrySelectedListener = new DialogInterface.OnClickListener() {
|
private final DialogInterface.OnClickListener mCompressionEntrySelectedListener = new DialogInterface.OnClickListener() {
|
||||||
@Override
|
@Override
|
||||||
public void onClick(DialogInterface dialog, int which) {
|
public void onClick(DialogInterface dialog, int which) {
|
||||||
dialog.dismiss();
|
dialog.dismiss();
|
||||||
|
|
||||||
Compression compression = Compression.fromIndex(which);
|
Compression compression = Compression.fromIndex(which);
|
||||||
// Don't pop the restart dialog unless the value is actually different.
|
// Don't pop the restart dialog unless the value is actually different.
|
||||||
if (compression != Compression.fromValue(DeviceActivity.this, mDevice.compression)) {
|
if (compression != Compression.fromValue(DeviceActivity.this, mDevice.compression)) {
|
||||||
|
@ -165,10 +173,13 @@ public class DeviceActivity extends SyncthingActivity implements View.OnClickLis
|
||||||
mQrButton.setOnClickListener(this);
|
mQrButton.setOnClickListener(this);
|
||||||
mCompressionContainer.setOnClickListener(this);
|
mCompressionContainer.setOnClickListener(this);
|
||||||
|
|
||||||
if (mIsCreateMode) {
|
|
||||||
if (savedInstanceState != null){
|
if (savedInstanceState != null){
|
||||||
|
if (mDevice == null) {
|
||||||
mDevice = new Gson().fromJson(savedInstanceState.getString("device"), Device.class);
|
mDevice = new Gson().fromJson(savedInstanceState.getString("device"), Device.class);
|
||||||
}
|
}
|
||||||
|
restoreDialogStates(savedInstanceState);
|
||||||
|
}
|
||||||
|
if (mIsCreateMode) {
|
||||||
if (mDevice == null) {
|
if (mDevice == null) {
|
||||||
initDevice();
|
initDevice();
|
||||||
}
|
}
|
||||||
|
@ -178,6 +189,22 @@ public class DeviceActivity extends SyncthingActivity implements View.OnClickLis
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private void restoreDialogStates(Bundle savedInstanceState) {
|
||||||
|
if (savedInstanceState.getBoolean(IS_SHOWING_COMPRESSION_DIALOG)){
|
||||||
|
showCompressionDialog();
|
||||||
|
}
|
||||||
|
|
||||||
|
if (savedInstanceState.getBoolean(IS_SHOWING_DELETE_DIALOG)){
|
||||||
|
showDeleteDialog();
|
||||||
|
}
|
||||||
|
|
||||||
|
if (mIsCreateMode){
|
||||||
|
if (savedInstanceState.getBoolean(IS_SHOWING_DISCARD_DIALOG)){
|
||||||
|
showDiscardDialog();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onDestroy() {
|
public void onDestroy() {
|
||||||
super.onDestroy();
|
super.onDestroy();
|
||||||
|
@ -207,6 +234,22 @@ public class DeviceActivity extends SyncthingActivity implements View.OnClickLis
|
||||||
public void onSaveInstanceState(Bundle outState) {
|
public void onSaveInstanceState(Bundle outState) {
|
||||||
super.onSaveInstanceState(outState);
|
super.onSaveInstanceState(outState);
|
||||||
outState.putString("device", new Gson().toJson(mDevice));
|
outState.putString("device", new Gson().toJson(mDevice));
|
||||||
|
if (mIsCreateMode){
|
||||||
|
outState.putBoolean(IS_SHOWING_DISCARD_DIALOG, mDiscardDialog != null && mDiscardDialog.isShowing());
|
||||||
|
if(mDiscardDialog != null){
|
||||||
|
mDiscardDialog.cancel();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
outState.putBoolean(IS_SHOWING_COMPRESSION_DIALOG, mCompressionDialog != null && mCompressionDialog.isShowing());
|
||||||
|
if(mCompressionDialog != null){
|
||||||
|
mCompressionDialog.cancel();
|
||||||
|
}
|
||||||
|
|
||||||
|
outState.putBoolean(IS_SHOWING_DELETE_DIALOG, mDeleteDialog != null && mDeleteDialog.isShowing());
|
||||||
|
if (mDeleteDialog != null) {
|
||||||
|
mDeleteDialog.cancel();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public void onServiceConnected() {
|
public void onServiceConnected() {
|
||||||
|
@ -302,14 +345,7 @@ public class DeviceActivity extends SyncthingActivity implements View.OnClickLis
|
||||||
shareDeviceId(this, mDevice.deviceID);
|
shareDeviceId(this, mDevice.deviceID);
|
||||||
return true;
|
return true;
|
||||||
case R.id.remove:
|
case R.id.remove:
|
||||||
new AlertDialog.Builder(this)
|
showDeleteDialog();
|
||||||
.setMessage(R.string.remove_device_confirm)
|
|
||||||
.setPositiveButton(android.R.string.yes, (dialogInterface, i) -> {
|
|
||||||
getApi().removeDevice(mDevice.deviceID);
|
|
||||||
finish();
|
|
||||||
})
|
|
||||||
.setNegativeButton(android.R.string.no, null)
|
|
||||||
.show();
|
|
||||||
return true;
|
return true;
|
||||||
case android.R.id.home:
|
case android.R.id.home:
|
||||||
onBackPressed();
|
onBackPressed();
|
||||||
|
@ -319,6 +355,23 @@ public class DeviceActivity extends SyncthingActivity implements View.OnClickLis
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
private void showDeleteDialog(){
|
||||||
|
mDeleteDialog = createDeleteDialog();
|
||||||
|
mDeleteDialog.show();
|
||||||
|
}
|
||||||
|
|
||||||
|
private Dialog createDeleteDialog(){
|
||||||
|
return new android.app.AlertDialog.Builder(this)
|
||||||
|
.setMessage(R.string.remove_device_confirm)
|
||||||
|
.setPositiveButton(android.R.string.yes, (dialogInterface, i) -> {
|
||||||
|
getApi().removeDevice(mDevice.deviceID);
|
||||||
|
finish();
|
||||||
|
})
|
||||||
|
.setNegativeButton(android.R.string.no, null)
|
||||||
|
.create();
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Receives value of scanned QR code and sets it as device ID.
|
* Receives value of scanned QR code and sets it as device ID.
|
||||||
*/
|
*/
|
||||||
|
@ -376,12 +429,7 @@ public class DeviceActivity extends SyncthingActivity implements View.OnClickLis
|
||||||
@Override
|
@Override
|
||||||
public void onClick(View v) {
|
public void onClick(View v) {
|
||||||
if (v.equals(mCompressionContainer)) {
|
if (v.equals(mCompressionContainer)) {
|
||||||
new AlertDialog.Builder(this)
|
showCompressionDialog();
|
||||||
.setTitle(R.string.compression)
|
|
||||||
.setSingleChoiceItems(R.array.compress_entries,
|
|
||||||
Compression.fromValue(this, mDevice.compression).getIndex(),
|
|
||||||
mCompressionEntrySelectedListener)
|
|
||||||
.show();
|
|
||||||
} else if (v.equals(mQrButton)){
|
} else if (v.equals(mQrButton)){
|
||||||
IntentIntegrator integrator = new IntentIntegrator(DeviceActivity.this);
|
IntentIntegrator integrator = new IntentIntegrator(DeviceActivity.this);
|
||||||
integrator.initiateScan();
|
integrator.initiateScan();
|
||||||
|
@ -390,6 +438,20 @@ public class DeviceActivity extends SyncthingActivity implements View.OnClickLis
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private void showCompressionDialog(){
|
||||||
|
mCompressionDialog = createCompressionDialog();
|
||||||
|
mCompressionDialog.show();
|
||||||
|
}
|
||||||
|
|
||||||
|
private Dialog createCompressionDialog(){
|
||||||
|
return new AlertDialog.Builder(this)
|
||||||
|
.setTitle(R.string.compression)
|
||||||
|
.setSingleChoiceItems(R.array.compress_entries,
|
||||||
|
Compression.fromValue(this, mDevice.compression).getIndex(),
|
||||||
|
mCompressionEntrySelectedListener)
|
||||||
|
.create();
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Shares the given device ID via Intent. Must be called from an Activity.
|
* Shares the given device ID via Intent. Must be called from an Activity.
|
||||||
*/
|
*/
|
||||||
|
@ -405,14 +467,23 @@ public class DeviceActivity extends SyncthingActivity implements View.OnClickLis
|
||||||
@Override
|
@Override
|
||||||
public void onBackPressed() {
|
public void onBackPressed() {
|
||||||
if (mIsCreateMode) {
|
if (mIsCreateMode) {
|
||||||
new AlertDialog.Builder(this)
|
showDiscardDialog();
|
||||||
.setMessage(R.string.dialog_discard_changes)
|
|
||||||
.setPositiveButton(android.R.string.ok, (dialog, which) -> finish())
|
|
||||||
.setNegativeButton(android.R.string.cancel, null)
|
|
||||||
.show();
|
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
super.onBackPressed();
|
super.onBackPressed();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private void showDiscardDialog(){
|
||||||
|
mDiscardDialog = createDiscardDialog();
|
||||||
|
mDiscardDialog.show();
|
||||||
|
}
|
||||||
|
|
||||||
|
private Dialog createDiscardDialog() {
|
||||||
|
return new android.app.AlertDialog.Builder(this)
|
||||||
|
.setMessage(R.string.dialog_discard_changes)
|
||||||
|
.setPositiveButton(android.R.string.ok, (dialog, which) -> finish())
|
||||||
|
.setNegativeButton(android.R.string.cancel, null)
|
||||||
|
.create();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,6 +2,8 @@ package com.nutomic.syncthingandroid.activities;
|
||||||
|
|
||||||
import android.app.Activity;
|
import android.app.Activity;
|
||||||
import android.app.AlertDialog;
|
import android.app.AlertDialog;
|
||||||
|
import android.app.Dialog;
|
||||||
|
import android.content.DialogInterface;
|
||||||
import android.content.Intent;
|
import android.content.Intent;
|
||||||
import android.os.Build;
|
import android.os.Build;
|
||||||
import android.os.Bundle;
|
import android.os.Bundle;
|
||||||
|
@ -56,11 +58,14 @@ public class FolderActivity extends SyncthingActivity
|
||||||
public static final String EXTRA_DEVICE_ID =
|
public static final String EXTRA_DEVICE_ID =
|
||||||
"com.nutomic.syncthingandroid.activities.FolderActivity.DEVICE_ID";
|
"com.nutomic.syncthingandroid.activities.FolderActivity.DEVICE_ID";
|
||||||
|
|
||||||
|
|
||||||
private static final int DIRECTORY_REQUEST_CODE = 234;
|
private static final int DIRECTORY_REQUEST_CODE = 234;
|
||||||
|
|
||||||
private static final String TAG = "EditFolderFragment";
|
private static final String TAG = "EditFolderFragment";
|
||||||
|
|
||||||
public static final String KEEP_VERSIONS_DIALOG_TAG = "KeepVersionsDialogFragment";
|
public static final String KEEP_VERSIONS_DIALOG_TAG = "KeepVersionsDialogFragment";
|
||||||
|
private static final String IS_SHOWING_DELETE_DIALOG = "DELETE_FOLDER_DIALOG_STATE";
|
||||||
|
private static final String IS_SHOW_DISCARD_DIALOG = "DISCARD_FOLDER_DIALOG_STATE";
|
||||||
|
|
||||||
private Folder mFolder;
|
private Folder mFolder;
|
||||||
|
|
||||||
|
@ -74,6 +79,9 @@ public class FolderActivity extends SyncthingActivity
|
||||||
private boolean mIsCreateMode;
|
private boolean mIsCreateMode;
|
||||||
private boolean mFolderNeedsToUpdate;
|
private boolean mFolderNeedsToUpdate;
|
||||||
|
|
||||||
|
private Dialog mDeleteDialog;
|
||||||
|
private Dialog mDiscardDialog;
|
||||||
|
|
||||||
private final KeepVersionsDialogFragment mKeepVersionsDialogFragment = new KeepVersionsDialogFragment();
|
private final KeepVersionsDialogFragment mKeepVersionsDialogFragment = new KeepVersionsDialogFragment();
|
||||||
|
|
||||||
private final TextWatcher mTextWatcher = new TextWatcherAdapter() {
|
private final TextWatcher mTextWatcher = new TextWatcherAdapter() {
|
||||||
|
@ -158,6 +166,9 @@ public class FolderActivity extends SyncthingActivity
|
||||||
if (mIsCreateMode) {
|
if (mIsCreateMode) {
|
||||||
if (savedInstanceState != null) {
|
if (savedInstanceState != null) {
|
||||||
mFolder = new Gson().fromJson(savedInstanceState.getString("folder"), Folder.class);
|
mFolder = new Gson().fromJson(savedInstanceState.getString("folder"), Folder.class);
|
||||||
|
if (savedInstanceState.getBoolean(IS_SHOW_DISCARD_DIALOG)){
|
||||||
|
showDiscardDialog();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
if (mFolder == null) {
|
if (mFolder == null) {
|
||||||
initFolder();
|
initFolder();
|
||||||
|
@ -168,6 +179,12 @@ public class FolderActivity extends SyncthingActivity
|
||||||
else {
|
else {
|
||||||
prepareEditMode();
|
prepareEditMode();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (savedInstanceState != null){
|
||||||
|
if (savedInstanceState.getBoolean(IS_SHOWING_DELETE_DIALOG)){
|
||||||
|
showDeleteDialog();
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -192,15 +209,25 @@ public class FolderActivity extends SyncthingActivity
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected void onSaveInstanceState(Bundle outState) {
|
||||||
|
super.onSaveInstanceState(outState);
|
||||||
|
outState.putBoolean(IS_SHOWING_DELETE_DIALOG, mDeleteDialog != null && mDeleteDialog.isShowing());
|
||||||
|
if (mDeleteDialog != null) {
|
||||||
|
mDeleteDialog.cancel();
|
||||||
|
}
|
||||||
|
|
||||||
|
if (mIsCreateMode){
|
||||||
|
outState.putBoolean(IS_SHOW_DISCARD_DIALOG, mDiscardDialog != null && mDiscardDialog.isShowing());
|
||||||
|
if(mDiscardDialog != null){
|
||||||
|
mDiscardDialog.cancel();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Save current settings in case we are in create mode and they aren't yet stored in the config.
|
* Save current settings in case we are in create mode and they aren't yet stored in the config.
|
||||||
*/
|
*/
|
||||||
@Override
|
|
||||||
public void onSaveInstanceState(Bundle outState) {
|
|
||||||
super.onSaveInstanceState(outState);
|
|
||||||
outState.putString("folder", new Gson().toJson(mFolder));
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onServiceConnected() {
|
public void onServiceConnected() {
|
||||||
getService().registerOnApiChangeListener(this);
|
getService().registerOnApiChangeListener(this);
|
||||||
|
@ -309,14 +336,7 @@ public class FolderActivity extends SyncthingActivity
|
||||||
finish();
|
finish();
|
||||||
return true;
|
return true;
|
||||||
case R.id.remove:
|
case R.id.remove:
|
||||||
new AlertDialog.Builder(this)
|
showDeleteDialog();
|
||||||
.setMessage(R.string.remove_folder_confirm)
|
|
||||||
.setPositiveButton(android.R.string.yes, (dialogInterface, i) -> {
|
|
||||||
getApi().removeFolder(mFolder.id);
|
|
||||||
finish();
|
|
||||||
})
|
|
||||||
.setNegativeButton(android.R.string.no, null)
|
|
||||||
.show();
|
|
||||||
return true;
|
return true;
|
||||||
case android.R.id.home:
|
case android.R.id.home:
|
||||||
onBackPressed();
|
onBackPressed();
|
||||||
|
@ -326,6 +346,22 @@ public class FolderActivity extends SyncthingActivity
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private void showDeleteDialog(){
|
||||||
|
mDeleteDialog = createDeleteDialog();
|
||||||
|
mDeleteDialog.show();
|
||||||
|
}
|
||||||
|
|
||||||
|
private Dialog createDeleteDialog(){
|
||||||
|
return new AlertDialog.Builder(this)
|
||||||
|
.setMessage(R.string.remove_folder_confirm)
|
||||||
|
.setPositiveButton(android.R.string.yes, (dialogInterface, i) -> {
|
||||||
|
getApi().removeFolder(mFolder.id);
|
||||||
|
finish();
|
||||||
|
})
|
||||||
|
.setNegativeButton(android.R.string.no, null)
|
||||||
|
.create();
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onActivityResult(int requestCode, int resultCode, Intent data) {
|
public void onActivityResult(int requestCode, int resultCode, Intent data) {
|
||||||
if (resultCode == Activity.RESULT_OK && requestCode == DIRECTORY_REQUEST_CODE) {
|
if (resultCode == Activity.RESULT_OK && requestCode == DIRECTORY_REQUEST_CODE) {
|
||||||
|
@ -389,14 +425,23 @@ public class FolderActivity extends SyncthingActivity
|
||||||
@Override
|
@Override
|
||||||
public void onBackPressed() {
|
public void onBackPressed() {
|
||||||
if (mIsCreateMode) {
|
if (mIsCreateMode) {
|
||||||
new AlertDialog.Builder(this)
|
showDiscardDialog();
|
||||||
.setMessage(R.string.dialog_discard_changes)
|
|
||||||
.setPositiveButton(android.R.string.ok, (dialog, which) -> finish())
|
|
||||||
.setNegativeButton(android.R.string.cancel, null)
|
|
||||||
.show();
|
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
super.onBackPressed();
|
super.onBackPressed();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private void showDiscardDialog(){
|
||||||
|
mDiscardDialog = createDiscardDialog();
|
||||||
|
mDiscardDialog.show();
|
||||||
|
}
|
||||||
|
|
||||||
|
private Dialog createDiscardDialog() {
|
||||||
|
return new AlertDialog.Builder(this)
|
||||||
|
.setMessage(R.string.dialog_discard_changes)
|
||||||
|
.setPositiveButton(android.R.string.ok, (dialog, which) -> finish())
|
||||||
|
.setNegativeButton(android.R.string.cancel, null)
|
||||||
|
.create();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,6 +4,7 @@ import android.annotation.SuppressLint;
|
||||||
import android.annotation.TargetApi;
|
import android.annotation.TargetApi;
|
||||||
import android.app.Activity;
|
import android.app.Activity;
|
||||||
import android.app.AlertDialog;
|
import android.app.AlertDialog;
|
||||||
|
import android.app.Dialog;
|
||||||
import android.content.ComponentName;
|
import android.content.ComponentName;
|
||||||
import android.content.Context;
|
import android.content.Context;
|
||||||
import android.content.DialogInterface;
|
import android.content.DialogInterface;
|
||||||
|
@ -58,6 +59,8 @@ public class MainActivity extends SyncthingActivity
|
||||||
implements SyncthingService.OnApiChangeListener {
|
implements SyncthingService.OnApiChangeListener {
|
||||||
|
|
||||||
private static final String TAG = "MainActivity";
|
private static final String TAG = "MainActivity";
|
||||||
|
private static final String IS_SHOWING_RESTART_DIALOG = "RESTART_DIALOG_STATE";
|
||||||
|
private static final String BATTERY_DIALOG_DISMISSED = "BATTERY_DIALOG_STATE";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Time after first start when usage reporting dialog should be shown.
|
* Time after first start when usage reporting dialog should be shown.
|
||||||
|
@ -68,6 +71,9 @@ public class MainActivity extends SyncthingActivity
|
||||||
|
|
||||||
private AlertDialog mDisabledDialog;
|
private AlertDialog mDisabledDialog;
|
||||||
private AlertDialog mBatteryOptimizationsDialog;
|
private AlertDialog mBatteryOptimizationsDialog;
|
||||||
|
private Dialog mRestartDialog;
|
||||||
|
|
||||||
|
private boolean mBatteryOptimizationDialogDismissed;
|
||||||
|
|
||||||
private ViewPager mViewPager;
|
private ViewPager mViewPager;
|
||||||
|
|
||||||
|
@ -115,7 +121,8 @@ public class MainActivity extends SyncthingActivity
|
||||||
boolean dontShowAgain = sp.getBoolean("battery_optimization_dont_show_again", false);
|
boolean dontShowAgain = sp.getBoolean("battery_optimization_dont_show_again", false);
|
||||||
if (dontShowAgain || mBatteryOptimizationsDialog != null ||
|
if (dontShowAgain || mBatteryOptimizationsDialog != null ||
|
||||||
Build.VERSION.SDK_INT < Build.VERSION_CODES.M ||
|
Build.VERSION.SDK_INT < Build.VERSION_CODES.M ||
|
||||||
pm.isIgnoringBatteryOptimizations(getPackageName())) {
|
pm.isIgnoringBatteryOptimizations(getPackageName()) ||
|
||||||
|
mBatteryOptimizationDialogDismissed) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -127,10 +134,11 @@ public class MainActivity extends SyncthingActivity
|
||||||
intent.setData(Uri.parse("package:" + getPackageName()));
|
intent.setData(Uri.parse("package:" + getPackageName()));
|
||||||
startActivity(intent);
|
startActivity(intent);
|
||||||
})
|
})
|
||||||
.setNeutralButton(R.string.dialog_disable_battery_optimization_later, null)
|
.setNeutralButton(R.string.dialog_disable_battery_optimization_later, (d, i) -> mBatteryOptimizationDialogDismissed = true)
|
||||||
.setNegativeButton(R.string.dialog_disable_battery_optimization_dont_show_again, (d, i) -> {
|
.setNegativeButton(R.string.dialog_disable_battery_optimization_dont_show_again, (d, i) -> {
|
||||||
sp.edit().putBoolean("battery_optimization_dont_show_again", true).apply();
|
sp.edit().putBoolean("battery_optimization_dont_show_again", true).apply();
|
||||||
})
|
})
|
||||||
|
.setOnCancelListener(d -> mBatteryOptimizationDialogDismissed = true)
|
||||||
.show();
|
.show();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -212,6 +220,10 @@ public class MainActivity extends SyncthingActivity
|
||||||
mDrawerFragment = (DrawerFragment) fm.getFragment(
|
mDrawerFragment = (DrawerFragment) fm.getFragment(
|
||||||
savedInstanceState, DrawerFragment.class.getName());
|
savedInstanceState, DrawerFragment.class.getName());
|
||||||
mViewPager.setCurrentItem(savedInstanceState.getInt("currentTab"));
|
mViewPager.setCurrentItem(savedInstanceState.getInt("currentTab"));
|
||||||
|
if (savedInstanceState.getBoolean(IS_SHOWING_RESTART_DIALOG)){
|
||||||
|
showRestartDialog();
|
||||||
|
}
|
||||||
|
mBatteryOptimizationDialogDismissed = savedInstanceState.getBoolean(BATTERY_DIALOG_DISMISSED);
|
||||||
} else {
|
} else {
|
||||||
mFolderListFragment = new FolderListFragment();
|
mFolderListFragment = new FolderListFragment();
|
||||||
mDeviceListFragment = new DeviceListFragment();
|
mDeviceListFragment = new DeviceListFragment();
|
||||||
|
@ -262,6 +274,11 @@ public class MainActivity extends SyncthingActivity
|
||||||
fm.putFragment(outState, DeviceListFragment.class.getName(), mDeviceListFragment);
|
fm.putFragment(outState, DeviceListFragment.class.getName(), mDeviceListFragment);
|
||||||
fm.putFragment(outState, DrawerFragment.class.getName(), mDrawerFragment);
|
fm.putFragment(outState, DrawerFragment.class.getName(), mDrawerFragment);
|
||||||
outState.putInt("currentTab", mViewPager.getCurrentItem());
|
outState.putInt("currentTab", mViewPager.getCurrentItem());
|
||||||
|
outState.putBoolean(BATTERY_DIALOG_DISMISSED, mBatteryOptimizationsDialog == null || !mBatteryOptimizationsDialog.isShowing());
|
||||||
|
outState.putBoolean(IS_SHOWING_RESTART_DIALOG, mRestartDialog != null && mRestartDialog.isShowing());
|
||||||
|
if (mRestartDialog != null){
|
||||||
|
mRestartDialog.cancel();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -301,6 +318,20 @@ public class MainActivity extends SyncthingActivity
|
||||||
mDisabledDialog.setCanceledOnTouchOutside(false);
|
mDisabledDialog.setCanceledOnTouchOutside(false);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void showRestartDialog(){
|
||||||
|
mRestartDialog = createRestartDialog();
|
||||||
|
mRestartDialog.show();
|
||||||
|
}
|
||||||
|
|
||||||
|
private Dialog createRestartDialog(){
|
||||||
|
return new AlertDialog.Builder(this)
|
||||||
|
.setMessage(R.string.dialog_confirm_restart)
|
||||||
|
.setPositiveButton(android.R.string.yes, (dialogInterface, i1) -> this.startService(new Intent(this, SyncthingService.class)
|
||||||
|
.setAction(SyncthingService.ACTION_RESTART)))
|
||||||
|
.setNegativeButton(android.R.string.no, null)
|
||||||
|
.create();
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean onOptionsItemSelected(MenuItem item) {
|
public boolean onOptionsItemSelected(MenuItem item) {
|
||||||
return mDrawerToggle.onOptionsItemSelected(item) || super.onOptionsItemSelected(item);
|
return mDrawerToggle.onOptionsItemSelected(item) || super.onOptionsItemSelected(item);
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
package com.nutomic.syncthingandroid.fragments;
|
package com.nutomic.syncthingandroid.fragments;
|
||||||
|
|
||||||
import android.app.AlertDialog;
|
import android.app.AlertDialog;
|
||||||
|
import android.app.Dialog;
|
||||||
import android.content.Intent;
|
import android.content.Intent;
|
||||||
import android.os.Bundle;
|
import android.os.Bundle;
|
||||||
import android.support.v4.app.Fragment;
|
import android.support.v4.app.Fragment;
|
||||||
|
@ -40,7 +41,6 @@ public class DrawerFragment extends Fragment implements View.OnClickListener {
|
||||||
private TextView mUpload;
|
private TextView mUpload;
|
||||||
private TextView mAnnounceServer;
|
private TextView mAnnounceServer;
|
||||||
private TextView mVersion;
|
private TextView mVersion;
|
||||||
|
|
||||||
private TextView mExitButton;
|
private TextView mExitButton;
|
||||||
|
|
||||||
private Timer mTimer;
|
private Timer mTimer;
|
||||||
|
@ -212,13 +212,8 @@ public class DrawerFragment extends Fragment implements View.OnClickListener {
|
||||||
mActivity.closeDrawer();
|
mActivity.closeDrawer();
|
||||||
break;
|
break;
|
||||||
case R.id.drawerActionRestart:
|
case R.id.drawerActionRestart:
|
||||||
|
mActivity.showRestartDialog();
|
||||||
mActivity.closeDrawer();
|
mActivity.closeDrawer();
|
||||||
new AlertDialog.Builder(getContext())
|
|
||||||
.setMessage(R.string.dialog_confirm_restart)
|
|
||||||
.setPositiveButton(android.R.string.yes, (dialogInterface, i1) -> getContext().startService(new Intent(getContext(), SyncthingService.class)
|
|
||||||
.setAction(SyncthingService.ACTION_RESTART)))
|
|
||||||
.setNegativeButton(android.R.string.no, null)
|
|
||||||
.show();
|
|
||||||
break;
|
break;
|
||||||
case R.id.drawerActionExit:
|
case R.id.drawerActionExit:
|
||||||
mActivity.stopService(new Intent(mActivity, SyncthingService.class));
|
mActivity.stopService(new Intent(mActivity, SyncthingService.class));
|
||||||
|
|
|
@ -6,6 +6,7 @@ import android.content.DialogInterface;
|
||||||
import android.os.Bundle;
|
import android.os.Bundle;
|
||||||
import android.support.annotation.NonNull;
|
import android.support.annotation.NonNull;
|
||||||
import android.support.v7.app.AlertDialog;
|
import android.support.v7.app.AlertDialog;
|
||||||
|
import android.util.Log;
|
||||||
import android.widget.FrameLayout.LayoutParams;
|
import android.widget.FrameLayout.LayoutParams;
|
||||||
import android.widget.NumberPicker;
|
import android.widget.NumberPicker;
|
||||||
|
|
||||||
|
@ -16,6 +17,8 @@ import static android.view.ViewGroup.LayoutParams.WRAP_CONTENT;
|
||||||
|
|
||||||
public class KeepVersionsDialogFragment extends DialogFragment {
|
public class KeepVersionsDialogFragment extends DialogFragment {
|
||||||
|
|
||||||
|
private static String KEEP_VERSION_VALUE = "KEEP_VERSION_KEY";
|
||||||
|
|
||||||
private OnValueChangeListener mOnValueChangeListener;
|
private OnValueChangeListener mOnValueChangeListener;
|
||||||
|
|
||||||
private NumberPicker mNumberPickerView;
|
private NumberPicker mNumberPickerView;
|
||||||
|
@ -38,6 +41,10 @@ public class KeepVersionsDialogFragment extends DialogFragment {
|
||||||
@NonNull
|
@NonNull
|
||||||
@Override
|
@Override
|
||||||
public Dialog onCreateDialog(Bundle savedInstanceState) {
|
public Dialog onCreateDialog(Bundle savedInstanceState) {
|
||||||
|
if (savedInstanceState != null) {
|
||||||
|
setValue(savedInstanceState.getInt(KEEP_VERSION_VALUE));
|
||||||
|
}
|
||||||
|
|
||||||
mNumberPickerView = createNumberPicker();
|
mNumberPickerView = createNumberPicker();
|
||||||
return new AlertDialog.Builder(getActivity())
|
return new AlertDialog.Builder(getActivity())
|
||||||
.setTitle(R.string.keep_versions)
|
.setTitle(R.string.keep_versions)
|
||||||
|
@ -47,6 +54,12 @@ public class KeepVersionsDialogFragment extends DialogFragment {
|
||||||
.create();
|
.create();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onSaveInstanceState(Bundle outState) {
|
||||||
|
super.onSaveInstanceState(outState);
|
||||||
|
outState.putInt(KEEP_VERSION_VALUE, mNumberPickerView.getValue());
|
||||||
|
}
|
||||||
|
|
||||||
public void setOnValueChangeListener(OnValueChangeListener onValueChangeListener) {
|
public void setOnValueChangeListener(OnValueChangeListener onValueChangeListener) {
|
||||||
mOnValueChangeListener = onValueChangeListener;
|
mOnValueChangeListener = onValueChangeListener;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue