收藏的内容未在Webview上正确显示


91

我正在开发语言词典应用程序。我将喜欢的单词保存到“首选项”中。XML文件中的“收藏夹”内容如下所示:

<?xml version='1.0' encoding='utf-8' standalone='yes' ?>
  <map>
    <string name="history">
      dict_name::160170::hi,dict_name::157140::he-man,dict_name::184774::jet,dict_name::34527::black
    </string>
    <string name="waitingTime">
      0
    </string>
    <boolean name="saveFavourite" value="true" />
    <string name="defaultDictionary">
      dict_name
    </string>
    <string name="favourite">
      dict_name::149271::go,dict_name::25481::back,dict_name::184774::jet
    </string>
    <boolean name="saveHistory" value="true" />
  </map>

我使用以下代码将“收藏夹”内容加载到Web视图中:

public class User extends Activity {
    private static final String FAVOURITE_TAG = "[MyDict - FavouriteView] ";
    private static final String CONTENT_TAG = null;

    private ListView mLSTFavourite = null;
    private ArrayList<String> lstDict = null;
    private ArrayList<Integer> lstId = null;
    private ArrayList<String> mWordFavourite = null;
    private ArrayAdapter<String> aptList = null;
    private SharedPreferences prefs;

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.favourite);
        prefs = PreferenceManager.getDefaultSharedPreferences(getApplicationContext());

        if (prefs.getBoolean("saveFavourite", true)) {
            String strFavourite = prefs.getString("favourite", "");
            Log.i(FAVOURITE_TAG, "Favourite loaded");
            if (strFavourite != null && !strFavourite.equals("")) {
                mWordFavourite = new ArrayList<String>(Arrays.asList(strFavourite.split(",")));
            } else {
                mWordFavourite = new ArrayList<String>();
            }
        } else {
            mWordFavourite = new ArrayList<String>();
        }

        Log.d(FAVOURITE_TAG, "mWordFavourite = " + mWordFavourite.size());
        mLSTFavourite = (ListView) findViewById(R.id.lstFavourite);

        ImageButton btnClear = (ImageButton) findViewById(R.id.btnClear);
        ImageButton btnBackToContent = (ImageButton) findViewById(R.id.btnBackToContent);

        if (lstDict == null) {
            lstDict = new ArrayList<String>();
            lstId = new ArrayList<Integer>();
            aptList = new ArrayAdapter<String>(getApplicationContext(), R.layout.customlist);
        }
        lstDict.clear();
        lstId.clear();
        aptList.clear();

        if (mWordFavourite != null && mWordFavourite.size() > 0) {
            try {
                for (int i = 0; i < mWordFavourite.size(); i++) {
                    Log.i(FAVOURITE_TAG, "item = " + mWordFavourite.get(i));
                    String arrPart[] = mWordFavourite.get(i).split("::");
                    if (arrPart.length == 3) {
                        Log.i(CONTENT_TAG, "loaded content " + arrPart.length + ", wordId = " + arrPart[1]);
                        // Log.i(CONTENT_TAG, "loaded 0");
                        lstDict.add(i, arrPart[0]);
                        // Log.i(CONTENT_TAG, "loaded 1");
                        lstId.add(i, Integer.parseInt(arrPart[1]));
                        // Log.i(CONTENT_TAG, "loaded 2");
                        aptList.add(arrPart[2]);
                    } else {
                        Log.i(FAVOURITE_TAG, "Wrong entry: " + mWordFavourite.get(i));
                    }
                }
            } catch (Exception ex) {
                Log.i(FAVOURITE_TAG, "Wrong entry found!");
            }
        }
        // Log.i(CONTENT_TAG,"Adapter size = " + aptList.getCount());
        // assign result return
        mLSTFavourite.setAdapter(aptList);
        mLSTFavourite.setOnItemClickListener(new AdapterView.OnItemClickListener() {
                    public void onItemClick(AdapterView<?> arg0, View v, int arg2, long arg3) {
                        // mEDWord.setText(mAdapter.getItem(arg2));
                        Intent i = new Intent();
                        i.putExtra("dict", lstDict.get(arg2));
                        i.putExtra("wordId", lstId.get(arg2));
                        setResult(RESULT_OK, i);
                        finish();
                    }
                });
        btnClear.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                // TODO Auto-generated method stub
                mWordFavourite.clear();
                aptList.clear();
                mLSTFavourite.setAdapter(aptList);
                SharedPreferences.Editor editor = prefs.edit();
                editor.putString("favourite", "");
                editor.commit();
                setResult(RESULT_OK);
                finish();
            }
        });

        btnBackToContent.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                setResult(RESULT_CANCELED);
                finish();
            }
        });
    }
}

收藏内容已成功加载。最喜欢的单词在网络视图中列出。但是问题在于,无论选择哪个单词,它都仅显示添加到收藏夹中的最新单词的定义。例如:

word1
word2
word3

尽管选择了单词1和/或单词2作为含义,但始终显示最后一个单词的定义,即单词3。我的目的是要显示的定义word1,当word1被选中,定义word2word2选择,等等等等。我将字典数据保存在SQLite数据库中。

那里的任何人都可以帮助解决这个问题。


18
我尝试了您问题中的代码,并且在列表视图中选择其中之一时,似乎可以从示例数据中返回正确的词典名称和单词ID。您提到了一个Webview和一个数据库,它们大概可以获取并显示所选单词的数据,如果提供了一些详细信息,则可以提供更多帮助。
StevieB 2012年

6
您在这里使用哪个版本的android?2.3共享偏好有问题,我自己碰到过,这听起来像是熟悉的效果。
星云2012年

5
在标题中您提到了webview,代码中的WebView在哪里???
指针为空

2
就像@StevieB已经提到的一样;如果不查看与WebView相关的代码,则很难提供更精确的帮助。在某些情况下,我自然可以想到WebView缓存数据。但是再说一遍:我真的需要看看您如何实现WebView部件才能提供更详细的帮助。
dbm 2012年

2
真是个奇怪的问题!在事实发生8个月后复活,仍然没有发布相关代码,并且以某种方式+74?没有对此进行深入研究,也没有比此评论有用的了。
dokkaebi,2012年

Answers:


3

我认为问题出在这条线

            mWordFavourite = new ArrayList<String>(Arrays.asList(strFavourite.split(",")));

<string>每次在哪里创建一个新的ArrayList 对象,但应该附加到该对象?&获取最后一个,否则应将其放在一个变量中

如果要检查其size()> 0

但是每次创建一个新对象时都不会附加到该对象

也许我错了!


By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.