Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我必须在另一个活动的 sqlite db spinner 中传递一个值。step的值如下:
extras.putString ("category", tv4.getText().toString ());
但是当我将它插入微调器时?
spinner.set ...... (i.getStringExtra("category"));
大概您的微调器有一个适配器和一个填充该适配器的数组。您需要首先从数组中找到要传入的字符串的索引。然后将微调器的位置设置为该索引。