[Solved] Android Class “this” components [closed]


As you can image, what you are reading in the log is the override version of Object#toString() in View:

V stays for View.VISIBLE

E stays for ENABLED

final int id = getId();
 if (id != NO_ID) {
        out.append(" #");
        out.append(Integer.toHexString(id));

it is the View’s id toHex. You can read the complete method here

13

solved Android Class “this” components [closed]