我正在从 json url 检索值,然后将其存储在字符串变量中。现在我想在微调器中显示该值。我在我的 strings.xml 文件中创建了一个数组列表。xml 文件包含以下代码:
<string name="credit_card_title">Card Type</string>
<string-array name="credit_card">
<item >Select</item>
<item >Visa</item>
<item >MC</item>
<item >Amex</item>
<item >Discover</item>
我的微调代码是:
<Spinner
android:id="@+id/crdtcrd_crdtype"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:entries="@array/credit_card"
android:prompt="@string/credit_card_title" />
从json url检索值后,我将其存储在变量名中String cardtype
现在如何cardtype
在 Spinner 中显示 的值crtdcrd_crdtype
....
json网址是:
http://mygogolfteetime.com/iphone/login/ramu@gmail.com/123456
从这个 URL 我必须检索的值cardtype
和检索值后我必须在微调器中显示它..
cardype
like有不同的值visa, mc, amex and discover
所有这些值都在我的strings.xml
文件中,在检索到值后,我必须在 Spinner 中显示它。
需要帮助仍然无法找到解决方案..
我正在尝试显示cardtype
使用以下代码的价值:
crdtcrd_crdtype.setSelection(cardtype);
但它显示了许多错误.. 1. 更改为 setSelected(..) 2. 将 cardtype 的类型更改为 int
提前致谢...