我最近使用Cordova,Ionic和angularJs构建了一个Android应用程序。我正在通过Cordova运行它们来创建实际的应用程序。主要问题是它在大多数设备上都能正常工作,如三星Galaxy S3,三星Galaxy S6,华为等。但另一方面,当我试图在三星Galaxy S4或三星Note或三星Grand中运行时,图片和布局看起来太过分了。我在stackoverflow中读到了一些建议,建议将元数据更改为target-densitydpi=medium-dpi
,但它既不起作用也不起作用。这是我的元标记:
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, target-densitydpi=medium-dpi, user-scalable=0" />
以及它在Galaxy S4,Note和Grand中的外观。 :
这是我的这个页面的html代码,考虑到我的所有类都来自Ionic框架。
&#39;&GT;
<ion-content>
<div class="row" style="margin-bottom: 4em;">
<img src="pictures/bb.png" width="100%" height="100%" />
</div>
<div class="row">
<div class=".col col-33 col-offset-5">
<a href="" ng-click="checkAuthenticationAndNaviagte()">
<img src="pictures/icons/coupon6.png" width="75" height="75"/>
</a>
<p class="category-title">Coupons</p>
</div>
<div class="col-33">
<a href="" ui-sref="offersState">
<img src="pictures/icons/offers6.png" width="75" height="75" />
</a>
<p class="category-title">App Offers</p>
</div>
<div class="col-33">
<a href="" ui-sref="eventsState">
<img src="pictures/icons/event6.png" width="75" height="75" />
</a>
<p class="category-title" >Events</p>
</div>
</div>
<div class="row" >
<div class=".col col-33 col-offset-5">
<a ui-sref="RequestCouponState">
<img src="pictures/icons/member6.png" width="75" height="75" />
</a>
<p class="category-title">Membership</p>
</div>
<div class="col-33">
<a ui-sref="contactUs">
<img src="pictures/icons/contact6.png" width="75" height="75"/>
</a>
<p class="category-title" >Contact us</p>
</div>
<div class="col-33">
<a href="#" onclick="window.open('https://www.facebook.com/BeautyNetPage?ref=br_rs', '_system', 'location=yes'); return false;">
<img src="pictures/icons/face6.png" width="75" height="75"/>
</a>
<p class="category-title">Facebook</p>
</div>
</div>
<div class="row" >
<div class=".col col-33 col-offset-5">
<a href="#">
<img src="pictures/icons/website6.png" onclick="window.open('http://www.beautynet.ps/', '_system', 'location=yes'); return false;" width="75" height="75" />
</a>
<p class="category-title" >Website</p>
</div>
</div>
</ion-content>
任何建议家伙?
答案 0 :(得分:1)
您所要做的就是将徽标图像的高度设置为像素值。