I've been trying to make an app with a floating window (multitasking capabilities). recently I ran into an SDK that allows me to create floating apps called Tooleap.
I've gone over their documentation. My problem is that i'm developing my app using Basic4Android. The Tooleap SDK documentation states that I need to extend my Activity class in order to create floating apps:
http://developer.tooleap.com/javadoc/com/tooleap/sdk/TooleapActivities.html
In other words, I want to achieve the following thing:
public class MyActivity extends TooleapActivities.Activity {
// Activity Code...
}
Is that possible in Basic4Android?