James Catalano | Hi One possible way to do what you're talking about would be to make your application have a "transparent" activity that overlays on top of the phone application when a video call is connected. You could use the Cisco Telephony API's to listen for active phone calls, and respond by overlaying your activity on top of the phone application, while leaving part of your activity transparent so the video can be shown through. You can use the following theme to make your activity transparent: android:theme="@android:style/Theme.Translucent" You can then add buttons, text, etc. to your layout while at the same time leaving the area where the video is transparent. One thing to keep in mind is that while your activity is in focus, you cannot interact with the video call that is underneath via the UI until your application is gone. James Catalano |
| Please sign in to flag this as inappropriate. |