Muzammil
Muzammil

Reputation: 668

Android Studio Expression Evaluation during debugging

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

Answers (2)

lukjar
lukjar

Reputation: 7425

You can just use "evaluate expression" button while debugging.

Evaluate Expression Button

Evaluating selected part of code

Upvotes: 40

OneCricketeer
OneCricketeer

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

Related Questions