使用 android webviews 的单选按钮和复选框,我尝试了很多使用标准 html 标记的样式,但显示不正确。它的 HDPI、XHDPI 和 Tab 总是很小。
用于复选框的样式
input[type="checkbox"] {
width: 18px;
padding: 2% 1%;
height: 18px;
margin: 2px 0;
}
用于单选按钮的样式
input[type="radio"] {
width: 1em;
height: 1em;
-webkit-border-radius: 1em;
border-radius: 1em;
}
用于单选按钮的 Html 标记
<input type="radio" name="select_ship_address" id="shippingInfo"/>
用于复选框的 Html 标记
<input class="floatLeft AddressTxt" tabindex="10" type="checkbox" id="optionOne" name="customer" rel="optional" value="yes" checked="">
任何人都有任何想法。请帮我。
例如:从选项卡截取的屏幕截图