Java等效媒体查询

时间:2017-10-14 08:11:49

标签: java android media

在Java中,以下媒体查询的等价物是什么?

<link rel="stylesheet" media="screen and (min-width: 320px) and (max-width: 359px)" href="css/320_533.css">    
<link rel="stylesheet" media="screen and (min-width: 360px) and (max-width: 599px)" href="css/360_640.css">    
<link rel="stylesheet" media="screen and (min-width: 600px) and (max-width: 799px)" href="css/600_1024.css">        
<link rel="stylesheet" media="screen and (min-width: 800px)" href="css/800_1280.css"> 

1 个答案:

答案 0 :(得分:0)

感谢您的评论。我以前使用javascript“window.innerWidth”函数来检测宽度,它工作正常。但在android系统webview更新后,它开始返回更大的宽度值。我将其更改为“screen.width”,现在它工作正常。 谢谢。 最好的祝福。