Reputation: 668
I am new to Android Studio and was trying to get my hands on.
My question is: how can I see the value of any expression which needs to be evaulated?
For instance, in the code below, how can I see the value of Message.getText()
?
if (Message.getText() == null){
Message.setError("Invalid Message");flag=true;
}
I have been using Eclipse with PyDev and there I had the option to evaluate any expression while debugging by using the print
statement.
I was just wondering if there is any equivalent functionality in Android studio
Upvotes: 26
Views: 15861
Reputation: 191711
the option to evaluate any expression while debugging
Yes. You set a breakpoint and debug, then you can see what the expressions evaluate to
Upvotes: 0