お気に入りのコンテンツが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

word1および/またはword2が意味のために選択されているにもかかわらず、最後の単語であるword3の定義が常に表示されます。私の目的は、の定義を表示することがあるword1ときword1に選択され、およびの定義word2時にword2選択されていることを、などにとなります。辞書データをSQLiteデータベースに保存します。

誰かがこの問題を解決するのを助けることができますか?


18
私はあなたの質問のコードを試してみましたが、リストビューでそれらの1つが選択されている場合、サンプルデータから正しい辞書名と単語IDを返すようです。おそらく選択した単語のデータを取得して表示するWebviewとデータベースについて言及しましたが、これらの詳細が提供されていれば、さらに助けが得られるでしょう。
StevieB

6
ここでは、どのバージョンのAndroidを使用していますか?2.3は共有設定に問題があり、私も自分でそれらに遭遇しましたが、これはおなじみの効果のように聞こえます。
星雲2012

5
タイトルであなたはwebviewに言及します、あなたのコードのどこにWebViewがありますか???
Pointer Null

2
@StevieBがすでに述べたように; WebView関連のコードを見ずに、より正確なヘルプを提供するのは少し難しいです。自発的に、特定の状況下でWebViewキャッシングデータを考えることができます。繰り返しますが、より詳細なヘルプを提供できるようにするには、WebViewパーツを実装する方法を実際に確認する必要があります。
dbm 2012年

2
なんて奇妙な質問だ!事実の8か月後に復活しましたが、関連するコードはまだ投稿されていません。これは十分に調査されておらず、このコメントよりも有用ではありません。
ドッカビ

回答:


3

問題はこの行にあると思います

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

<string>毎回新しいArrayList オブジェクトを作成しますが、追加する必要がありますか?&最後のものを取得します。それ以外の場合は、1つの変数に入れます。

size()> 0かどうかを確認している場合

しかし、追加しない新しいオブジェクトを作成するたびに

多分私は間違っている!


弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.