查询更改后刷新光标 - onStart()?
在 onCreate() 中,我定义了一个光标并使用按钮在结果中向下移动:
final Cursor cursor = (Cursor) WoordData.fetchset(USERCHOICE);
btnVolgende.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
tv.setText(cursor.getString(0));
cursor.moveToNext();
if (cursor.isAfterLast()){
cursor.moveToFirst();
}}});
在单独的活动中(通过首选项)我允许用户更改 USERCHOICE 的值。
问题:当用户返回主活动时,如何使用新查询(USERCHOICE 的新值)重新加载游标?
谢谢!
In onCreate(), I define a cursor and move down in the results using a button :
final Cursor cursor = (Cursor) WoordData.fetchset(USERCHOICE);
btnVolgende.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
tv.setText(cursor.getString(0));
cursor.moveToNext();
if (cursor.isAfterLast()){
cursor.moveToFirst();
}}});
In a seperate activity (through Preferences) I allow the user to change the value of USERCHOICE.
Question : How to I re-load the cursor with the new query (new value of USERCHOICE) when the user returns to the main activity?
thnx!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
感谢克里斯蒂安,我解决了这个问题。不过,我不确定这是最干净的解决方案。
我创建了一个名为
resetneeded
的布尔值。在点击按钮代码中,我这样做:
btnVolgende.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
如果(需要重置){
光标 = (光标) WoordData.fetchset(kernset);
需要重置=假;
}
开始管理光标(光标);
tvFlitswoord.setText(cursor.getString(0));
光标.moveToNext();
if (cursor.isAfterLast()){
光标.moveToFirst();
}}
。
然后,在 onStart() 中,我将布尔值
resetneeded
设置为 true// 编辑 - 第二个解决方案
最后,我决定使用 ArrayList 将单词传递到 TextView(并使用按钮循环浏览它)。 ArrayList 似乎更容易处理并且不那么脆弱。
代码:
Thanks to Christian, I solved it. I'm not sure this is the cleanest solution, though..
I created a boolean called
resetneeded
.In the clickbutton code I do :
btnVolgende.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
if (resetneeded) {
cursor = (Cursor) WoordData.fetchset(kernset);
resetneeded = false;
}
startManagingCursor(cursor);
tvFlitswoord.setText(cursor.getString(0));
cursor.moveToNext();
if (cursor.isAfterLast()){
cursor.moveToFirst();
}}
}
And then, in the onStart(), I set the boolean
resetneeded
to true.// EDIT - 2nd Solution
In the end, I decided to use an ArrayList for passing the words to the TextView (and cycling through it with the button). An ArrayList seems easier to handle and less fragile..
The code :