I know ActivityGroup
is deprecated.
But I am trying to combine user interface of NativeActivty
with some Java/Android API View
s.
I am trying to make one hybrid user interface where a part of the screen is from NativeActivity
.
I used this example and tried ActivityGroup
with some simple activities.
This work perfectly with any Activity
(Even if I play video using VideoView).
But when I tried to load NativeActivity
it not working. (I tried Teapot demo from NDK samples).
By "not working" I mean window.getDecorView()
from native activity it always return transparent view, not actual content view.
How should I do it? Please help me.