I am working on an Android project and my task is to open the URL in the embedded webview. Here is the code. When the button is clicked, I open the URL as follows:
yookosBtn.setOnClickListener(new OnClickListener() { @Override public void onClick(View v) { linearLayout.setVisibility(View.GONE); webview.setVisibility(View.VISIBLE); webview.loadUrl("https://www.google.com.pk/"); } });
1: When I open google.com, it opens perfectly in the built-in web view:

But when I replace the link with the link http://videoshare.loveworldapis.com/commentredirect.php , the link opens in full screen instead of the built-in part of the webview as shown below:

Can you tell me what kind of modification I have to do in order to open the second website in the integrated web browser instead of full screen.
source share