查询更改后刷新光标 - onStart()?

发布于 2024-12-13 08:48:33 字数 594 浏览 0 评论 0原文

在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

半城柳色半声笛 2024-12-20 08:48:33

感谢克里斯蒂安,我解决了这个问题。不过,我不确定这是最干净的解决方案。

我创建了一个名为 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 似乎更容易处理并且不那么脆弱。

代码:

    public void onStart(){
    super.onStart();    
    getPrefs();
    wordlistarray.clear();
    cursor = (Cursor) WoordData.fetchset(kernset);       
    cursor.moveToFirst();
    while(!cursor.isAfterLast()) {

        String wordtoadd = cursor.getString(0);
        wordlistarray.add(wordtoadd);
        cursor.moveToNext();
    }       

            for(int i = 0; i < wordlistarray.size();
                    i++){ Log.d("word in array", "" + wordlistarray.get(i)); }

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 :

    public void onStart(){
    super.onStart();    
    getPrefs();
    wordlistarray.clear();
    cursor = (Cursor) WoordData.fetchset(kernset);       
    cursor.moveToFirst();
    while(!cursor.isAfterLast()) {

        String wordtoadd = cursor.getString(0);
        wordlistarray.add(wordtoadd);
        cursor.moveToNext();
    }       

            for(int i = 0; i < wordlistarray.size();
                    i++){ Log.d("word in array", "" + wordlistarray.get(i)); }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文