UI and flow updates
This commit is contained in:
parent
442216fd2e
commit
b6e2507580
|
@ -112,8 +112,7 @@ public class Orbot extends SherlockActivity implements TorConstants, OnLongClick
|
|||
|
||||
prefs = PreferenceManager.getDefaultSharedPreferences(this);
|
||||
|
||||
|
||||
|
||||
doLayout();
|
||||
}
|
||||
|
||||
private void doLayout ()
|
||||
|
@ -167,7 +166,7 @@ public class Orbot extends SherlockActivity implements TorConstants, OnLongClick
|
|||
downloadText.setText(formatCount(0) + " / " + formatTotal(0));
|
||||
uploadText.setText(formatCount(0) + " / " + formatTotal(0));
|
||||
|
||||
//updateStatus("");
|
||||
updateStatus("");
|
||||
}
|
||||
|
||||
private void appendLogTextAndScroll(String text)
|
||||
|
@ -330,7 +329,7 @@ public class Orbot extends SherlockActivity implements TorConstants, OnLongClick
|
|||
protected void onPause() {
|
||||
super.onPause();
|
||||
|
||||
unbindService();
|
||||
//unbindService();
|
||||
|
||||
//hideProgressDialog();
|
||||
|
||||
|
@ -417,8 +416,18 @@ public class Orbot extends SherlockActivity implements TorConstants, OnLongClick
|
|||
|
||||
bindService();
|
||||
|
||||
doLayout ();
|
||||
updateStatus("");
|
||||
}
|
||||
|
||||
|
||||
|
||||
@Override
|
||||
protected void onNewIntent(Intent intent) {
|
||||
|
||||
super.onNewIntent(intent);
|
||||
|
||||
updateStatus("");
|
||||
handleIntents();
|
||||
}
|
||||
|
||||
private void handleIntents ()
|
||||
|
@ -553,7 +562,7 @@ public class Orbot extends SherlockActivity implements TorConstants, OnLongClick
|
|||
protected void onStop() {
|
||||
super.onStop();
|
||||
|
||||
unbindService();
|
||||
//unbindService();
|
||||
}
|
||||
|
||||
|
||||
|
@ -564,6 +573,7 @@ public class Orbot extends SherlockActivity implements TorConstants, OnLongClick
|
|||
private void openBrowser(String url)
|
||||
{
|
||||
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(url));
|
||||
intent.setFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP|Intent.FLAG_ACTIVITY_NEW_TASK);
|
||||
startActivity(intent);
|
||||
|
||||
}
|
||||
|
@ -599,14 +609,13 @@ public class Orbot extends SherlockActivity implements TorConstants, OnLongClick
|
|||
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
|
||||
super.onActivityResult(requestCode, resultCode, data);
|
||||
|
||||
//if we get a response from an activity we launched (like from line 527 where we launch the Settings/Prefs screen)
|
||||
//and the resultCode matches our arbitrary 1010 value, AND Tor is running
|
||||
//then update the preferences in an async background task
|
||||
if (requestCode == 1 && resultCode == 1010 && mService != null)
|
||||
|
||||
if (requestCode == 1 && mService != null)
|
||||
{
|
||||
new ProcessSettingsAsyncTask().execute(mService);
|
||||
setLocale();
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
AlertDialog aDialog = null;
|
||||
|
@ -922,6 +931,10 @@ public class Orbot extends SherlockActivity implements TorConstants, OnLongClick
|
|||
downloadText.setText(formatCount(datacount.Download) + " / " + formatTotal(totalRead));
|
||||
uploadText.setText(formatCount(datacount.Upload) + " / " + formatTotal(totalWrite));
|
||||
|
||||
if (torStatus != TorServiceConstants.STATUS_ON)
|
||||
{
|
||||
updateStatus("");
|
||||
}
|
||||
|
||||
default:
|
||||
super.handleMessage(msg);
|
||||
|
@ -1021,13 +1034,15 @@ public class Orbot extends SherlockActivity implements TorConstants, OnLongClick
|
|||
}
|
||||
}
|
||||
|
||||
//maybe needs this?
|
||||
mService = null;
|
||||
|
||||
// Detach our existing connection.
|
||||
unbindService(mConnection);
|
||||
mIsBound = false;
|
||||
|
||||
|
||||
//maybe needs this?
|
||||
mService = null;
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -40,9 +40,10 @@ public class RandomColorCircleView extends View
|
|||
}
|
||||
|
||||
private void init(){
|
||||
paint.setStyle(Paint.Style.FILL);
|
||||
paint.setStyle(Paint.Style.STROKE);
|
||||
paint.setColor(Color.WHITE);
|
||||
// paint.setAntiAlias(true);
|
||||
paint.setAntiAlias(false);
|
||||
paint.setStrokeWidth(6);
|
||||
|
||||
}
|
||||
|
||||
|
@ -96,6 +97,7 @@ public class RandomColorCircleView extends View
|
|||
|
||||
}
|
||||
|
||||
/*
|
||||
@Override
|
||||
public boolean onTouchEvent(MotionEvent event) {
|
||||
|
||||
|
@ -127,6 +129,6 @@ public class RandomColorCircleView extends View
|
|||
|
||||
return true;
|
||||
|
||||
}
|
||||
}*/
|
||||
|
||||
}
|
Loading…
Reference in New Issue