作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
<分区>
我想在微调器中设置提示。就像在编辑文本中一样,我给出了提示,即:
android:Hint="First Name"
那么我应该像状态一样为 Spinner 做些什么?
我的状态将从数据库中动态填充。如果我在数组 index[0]
中给出提示,那么它将影响该字段的第零个位置。
我该怎么做?
代码
public String[] getState()
{
try
{
Cursor cursor = dbUser.State();
if (cursor.getCount() >= 0)
{
array_state = new String[cursor.getCount()];
i = 0;
while (cursor.moveToNext())
{
array_state[i] = cursor.getString(1);
i++;
}
}
}
catch (Exception e)
{
// TODO: handle exception
}
return array_state;
}
我是一名优秀的程序员,十分优秀!