• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

How might i add a watermark in a capture video in android/Kotlin

Nagori

Newbie
Here is my simple code basically I want to capture a video using the watermark text andI want to do it in a simple way, please help

video_button.setOnClickListener {

Intent(MediaStore.ACTION_VIDEO_CAPTURE).also { takeVideoIntent ->
takeVideoIntent.resolveActivity(packageManager)?.also {
startActivityForResult(takeVideoIntent, REQUEST_VIDEO_CAPTURE)
}
 
Back
Top Bottom