我已经定制了我的<select>
使用方式:
background-color:#ececec;
border:0;
border:1px solid #e3e3e3;
border-radius:3px;
width:100%;
font-family:'FuturaStdLightOblique', sans-serif;
font-size:16px;
color:#616263;
outline:none;
height: 40px;
Run Code Online (Sandbox Code Playgroud)
但我也希望将我的下拉箭头改为符合此设计的外观.我想使用unicode三角形▼(▼
)作为向下箭头的替代方法,如果可能的话,将其设置为与我的select标签中的文本相同的颜色.
关于如何在不使用CSS/HTML之外的任何事情的情况下实现这一目标的任何想法?提前致谢.
我像这样在我的SQLite数据库中获取记录.
spellId = extra.getString("spellId");
DBase db = new DBase(this);
db.open();
String[] data = db.getRecord(Integer.parseInt(spellId));
db.close();
Run Code Online (Sandbox Code Playgroud)
我可以在不使用原始查询和游标的情况下获得此类随机数据吗?