How to find out which view is focused?

android

Solution

Call `getCurrentFocus()` on the Activity.

Problem

I need to find out if any view is focused inside an Activity and what view it is. How to do this?

Original source

Related problems