0

As I am developing my first Android app, recording mobile screen using this tutorial. Now I want to display my recorded video like following Pop-up window layout with share functionality of the AZ Screen Recorder in my android app.

enter image description here

How to implement the above functionality in Android Studio 2.2?

SRK
  • 744
  • 3
  • 11
  • 23

1 Answers1

0

After you are done recording the video you can start a new activity where all these share and other options. To make this activity as a popup over the android system all you have to do is set either of the following code in android manifest of that activity:

For Activity:

android:theme="@android:style/Theme.Dialog"

For AppCombatActivity:

android:theme="@style/Theme.AppCompat.Dialog.Alert"

Hope it helps!!

Ashwani Kumar
  • 1,402
  • 1
  • 19
  • 26