About 50 results
Open links in new tab
  1. Android Studio doesn't detect my connected physical devices

    The AVD Manager in Android Studio doesn't show my device but adb devices command in teminal shows it. How to resolve my issues ?

  2. How to detect device type using javascript - Stack Overflow

    How to detect device type using javascript [closed] Asked 12 years, 9 months ago Modified 2 years, 7 months ago Viewed 78k times

  3. What's an optimal or efficient way to detect a 'touch screen' device ...

    Mar 2, 2023 · 7 The biggest "gotcha" with trying to detect touch is on hybrid devices that support both touch and the trackpad/mouse. Even if you're able to correctly detect whether the user's device …

  4. javascript - Detecting a mobile browser - Stack Overflow

    Jul 8, 2012 · @ave: What are you trying to do by detecting a "mobile" browser? The distinction is highly arguable in today's world of tablets and hybrid computing devices. Are you looking to detect small …

  5. Simplest way to detect a mobile device in PHP - Stack Overflow

    I wrote this script to detect a mobile browser in PHP. The code detects a user based on the user-agent string by preg_match ()ing words that are found in only mobile devices user-agent strings after …

  6. How to detect a mobile device with JavaScript? - Stack Overflow

    Jul 12, 2011 · 2 Device detection based on user-agent is not very good solution, better is to detect features like touch device (in new jQuery they remove $.browser and use $.support instead). To …

  7. css - Detect if a browser in a mobile device (iOS/Android phone/tablet ...

    93 Is there a way to detect if a handheld browser is used (iOS/Android phone/tablet)? I tried this with the goal to make an element half as wide in a browser on a handheld device but it doesn't make a …

  8. What is proper way to detect device in Next.js SSR?

    Jun 2, 2020 · What is proper way to detect device in Next.js SSR? Asked 5 years, 8 months ago Modified 1 year, 10 months ago Viewed 17k times

  9. How to detect the device on React SSR App with Next.js?

    Dec 26, 2019 · on a web application I want to display two different Menu, one for the Mobile, one for the Desktop browser. I use Next.js application with server-side rendering and the library react-device …

  10. javascript - Detect if device is iOS - Stack Overflow

    593 I'm wondering if it's possible to detect whether a browser is running on iOS, similar to how you can feature detect with Modernizr (although this is obviously device detection rather than feature detection).