This commit is contained in:
GME 2019-04-14 10:39:40 +02:00
parent 9dcf437fa6
commit 4ef452983a

View file

@ -149,4 +149,12 @@ public class UserAccountActivity extends AppCompatActivity {
super.onStop(); // Always call the superclass method first
Toast.makeText(getApplicationContext(), "onStop called", Toast.LENGTH_LONG).show();
}
@Override
protected void onRestart() {
super.onRestart(); // Always call the superclass method first
Log.i("UserAccountActivity",wallet_hash);
new GetUserBalanceTask().execute(wallet_hash);
Toast.makeText(getApplicationContext(), "onRestart called", Toast.LENGTH_LONG).show();
}
}