Posts by rcrepaldi • 51 points
3 posts
-
0
votes3
answers359
viewsA: How to assign a zero value to a variable(s) before running the program?
Yan, in code the only option is to declare the value of the variable in the attribute, as follows. public class CalculoCRActivity extends Activity { EditText editText1; Button button2; private int…
-
3
votes1
answer99
viewsA: Radio Button does not change text
You need to send a message to your user interface stating that you want to update a component. You can use a Handler as follows: handler.post(new Runnable() { @Override public void run() { // SETA O…
-
2
votes0
answers48
viewsQ: How to call web service on test with MONKEY
I am using MONKEY for stress testing, but my application has several calls to webservices in several activitys. The problem is that Monkey never arrives at activitys that are opened after web…