So i have a stream camera runing inside a views page , i want the camera be invsible in the views page , but it should keep runing and give data..
Any solutions "
So i have a stream camera runing inside a views page , i want the camera be invsible in the views page , but it should keep runing and give data..
Any solutions "
Hello,
Welcome to our Microsoft Q&A platform!
If you use camera preview like this thread
https://docs.microsoft.com/en-us/xamarin/xamarin-forms/app-fundamentals/custom-renderer/view
You cannot make the views or page to invisble, but you can set the HeightRequest="1" and WidthRequest="1" make it to be small like this screenshot.

But if you navigate to other pages, this cameraview will be closed.
Best Regards,
Leon Lu
If the response is helpful, please click "Accept Answer" and upvote it.
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.
@LeonLu-MSFT actually i am passing the camera stream to the views through a page render , you can check the screenshot
i attached to you the SetupUserInterface method

Change your matchParentParams to this code RelativeLayout.LayoutParams layoutParams = new RelativeLayout.LayoutParams(1,1);
@LeonLu-MSFT yes it works , fine . Now sir is there any solution for integrating this page (CameraPage) to another Page in my application
because i will use only one page (Dashboard Page) and i want the camera page alawys running
10 people are following this question.