我需要将选择框的背景颜色设置为黄色。当我测试时,它确实在 android 2.3 和 android 3.0 上显示带有黄色和箭头的框。
但在 android 4.0 上,它将选择显示为完全黄色,没有下拉箭头。
知道如何解决这个问题吗?
我正在用电话间隙设计这个。
这是我为 html 选择设置背景颜色的代码。
<select style="background-color:#FFFF00;border:#FFFF00;height:25px;font-family:Arial, Helvetica, sans-serif; color:#000000; font-size:14px; font-weight:bold; text-align:center;">
<option></option>
<option>1</option>
<option>2</option>
<option>3</option>
<option>4</option>
<option>5</option>
</select>