Getting Information From Logcat Window
How to get information from the LogCat window?
Solution 1:
If you add something like Log.v("tag", "value");
in your code,
You can see that in LogCat window.
If you add something like Log.v("tag", "value");
in your code,
You can see that in LogCat window.
You can click Windows ->ShowView->Other-> Android ->Logcat
Refer to Images 1 and Images 2
and
and in the code use v -> Verbose and d -> Debug and E-> Error I -> Information, W -> Warning
Post a Comment for "Getting Information From Logcat Window"