About 282,000 results
Open links in new tab
  1. How to enable zoom controls and pinch zoom in a WebView?

    May 31, 2017 · To enable zoom controls in a WebView, add the following line: webView.getSettings().setBuiltInZoomControls(true); With this line of code, you get the zoom enabled in your WebView, if you want to remove the zoom in and zoom out buttons provided, add the following line of code: webView.getSettings().setDisplayZoomControls(false);

    Missing:

    • Java

    Must include:

  2. How to Enable Zoom in Android WebView? - CodingTechRoom

    Not configuring the zoom settings of the WebView properly. Solutions. Use `setSupportZoom(true)` to allow zooming within the WebView. Activate built-in zoom controls with `setBuiltInZoomControls(true)`. You can hide the default zoom controls by using `setDisplayZoomControls(false)`.

  3. ZoomControls in Android with Example - GeeksforGeeks

    Aug 8, 2024 · In Android, Zoom Control is a class that has some set of methods that are used to control the zoom functionality. It has two buttons that are used to control the zoom functionality (ie Zoom In and Zoom Out).

  4. Best practices using the Meeting SDK in an Android WebView

    Mar 3, 2023 · Zoom recommends using the Meeting SDK for Android in native Android apps. However, if you are optimizing your Android app for package size, the Meeting SDK for web can be embedded in an Android WebView. This is now supported in Meeting SDK for web 2.10.1 and above. Here are the best practices for using the Meeting SDK for web in an Android WebView:

  5. Java android ImageView with zoom - Stack Overflow

    Nov 3, 2012 · Starting with Android 3.0 (API Level 11) you can zoom every view using setScaleX(), setScaleY(), setPivotX(), setPivotY() etc., or just using setMatrix().

  6. Manage WebView objects | Views | Android Developers

    May 20, 2024 · Android provides several APIs to help you manage the WebView objects that display web content in your app. This page describes how to use these APIs to work with WebView objects more effectively, improving your app's stability and security.

  7. Enable WebView Zoom Controls in Android - Online Tutorials …

    Learn how to enable zoom controls in WebView for your Android applications to enhance user experience and accessibility.

  8. java - Zooming in android - keep image in view - Stack Overflow

    Sep 27, 2011 · You can use android.graphics.Matrix to transform drawn Bitmap. Matrix holds both scale and translation in it. You would simply apply the matrix to canvas: canvas.setMatrix. You can easily compute fit-to-screen for desired rectangle: Matrix.setRectToRect

  9. Implement Zoom In or Zoom Out in Android - GeeksforGeeks

    Jun 16, 2023 · How to Add Zoom In/Out Animation in Android. The following example demonstrates the steps involved in implementing Zoom In and Zoom Out animation to an image file. An image file will be added in the activity using ImageView. Note: Following steps are performed on Android Studio version 4.0 . Step 1: Create new project

  10. How to enable or disable zoom in Android WebView?

    Jul 19, 2019 · This Android platform-specific enables pinch-to-zoom and a zoom control on a WebView. It’s consumed in XAML by setting the WebView.EnableZoomControls and WebView.DisplayZoomControls bindable properties to boolean values:

  11. Some results have been removed
Refresh