Let's say you make a Bean which is going to be used in an activity, and you declare an import like: ```java @Import public void finish() {} ``` The `finish()` method is not imported from the activity at least that you declare it in the Subclassing activity itself: ```java @Override public void finish() { super.finish(); } ```
Let's say you make a Bean which is going to be used in an activity, and you declare an import like:
The
finish()method is not imported from the activity at least that you declare it in the Subclassing activity itself: