Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How would i detect that the device in use is an Android for a mobile website?

I need to apply certain css attributes to the Android platform.

Thanks

share|improve this question

1 Answer

up vote 35 down vote accepted

Take a look at that : http://davidwalsh.name/detect-android

JavaScript:

var ua = navigator.userAgent.toLowerCase();
var isAndroid = ua.indexOf("android") > -1; //&& ua.indexOf("mobile");
if(isAndroid) {
  // Do something!
  // Redirect to Android-site?
  window.location = 'http://android.davidwalsh.name';
}

PHP:

$ua = strtolower($_SERVER['HTTP_USER_AGENT']);
if(stripos($ua,'android') !== false) { // && stripos($ua,'mobile') !== false) {
  header('Location: http://android.davidwalsh.name');
  exit();
}
share|improve this answer
you sir are a legend. – Xavier May 17 '11 at 13:30
2  
don't forget to also check for android tablets: googlewebmastercentral.blogspot.com/2011/03/… – flurin May 17 '11 at 13:35
1  
Lol thanks ;-) Nice avatar btw – Michael Lumbroso May 17 '11 at 13:35
It's worth noting that this does not always work for android devices as, for example, the user agents which are reported by Kindle Fire HD devices do not contain the word 'android' at all. – djbp Jun 11 at 13:54

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.