1

現在アプリを開発中です。ユーザーがいくつかの文を入力すると、アプリはあいまいな単語を取得して意味を表示します。私のテーブルには、_id、単語、意味、definition_number などのフィールドがあります。

サンプルデータ:
_id 単語意味定義_番号
1 何かから一時停止するブレーク 1
2 バラバラに切断するブレーク 2

ユーザーが入力する場合: 私の休憩は非常に速かったです。意図した出力は次のようになります:
あいまいな単語: Break
意味:何かから一時停止する

ランダムに表示したい。これは私のDBHelper.classからのコードのスニペットです:

        public Cursor getAllWords()
{
    Cursor localCursor =   
            //this.myDataBase.query(DB_TABLE, new String[] { 
            //      KEY_ID, KEY_WORD, KEY_MEANING }, null, null, null, null, null);//"RANDOM()");
        //this.myDataBase.query(DB_TABLE, new String[] { 
        //      KEY_ID, KEY_WORD, KEY_MEANING }, null, null, null, null, "RANDOM()", " 1");
            this.myDataBase.query(DB_TABLE, new String[] { 
                            KEY_ID, KEY_WORD, KEY_MEANING }, 
                            null, null, null, null, "RANDOM()");
    if (localCursor != null){
      localCursor.moveToFirst(); 
    }

    return localCursor; 


}

MainActivity.class :

    ArrayList<String> colWords = new ArrayList<String>();
ArrayList<String> colMeanings = new ArrayList<String>();
String[] words;
String[] meanings;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    initControls();

}

private void initControls() {
    // TODO Auto-generated method stub
    text = (EditText) findViewById (R.id.editText1);

    view = (TextView) findViewById (R.id.textView1);

    clear = (Button) findViewById (R.id.button2);

    clear.setOnClickListener(new View.OnClickListener() {

        @Override
        public void onClick(View v) {
            // TODO Auto-generated method stub
            text.setText("");
            view.setText("");

        }
    });


    connectDB();

    ok = (Button) findViewById (R.id.button1);
    ok.setOnClickListener(new View.OnClickListener() {

        @Override
        public void onClick(View v) {
            // TODO Auto-generated method stub
            //Log.d(strWord, strWord);

            strWord = text.getText().toString();
            if(strWord.isEmpty()){
                Toast.makeText(MainActivity.this, "Please input some data", Toast.LENGTH_SHORT).show();
            } else {
            checkAmbiguousWord();
            }
        }   
    });
}

private void connectDB(){
    dbHelper = new DBHelper(MainActivity.this);

    try {

            dbHelper.createDataBase();

    } catch (IOException ioe) {

            throw new Error("Unable to create database");

    }

    try {

            dbHelper.openDataBase();

    } catch (SQLException sqle) {

            throw sqle;

    }

    cursor = dbHelper.getAllWords();




    /*strWord = cursor.getString(cursor.getColumnIndex(DBHelper.KEY_WORD))
            + cursor.getString(cursor.getColumnIndex(DBHelper.KEY_MEANING)); */

    colWords.clear();///added code
    colMeanings.clear();///added code
    /*
    for(cursor.moveToFirst(); cursor.moveToNext(); cursor.isAfterLast()) {
        colWords.add(cursor.getString(1));
        colMeanings.add(cursor.getString(2));
        String records = cursor.getString(0);

        Log.d("Records", records);
    } */

    if (cursor != null) {
        if (cursor.moveToFirst()) {
            do {
                colWords.add(cursor.getString(1)); 
                colMeanings.add(cursor.getString(2));   
                String records = cursor.getString(0);

                Log.d("Records", records);
            } while (cursor.moveToNext());
        }
    }

}

private void checkAmbiguousWord(){
    final String textToCheck = text.getText().toString();
    List<Integer> ambiguousIndexes = findAmbiguousWordIndexes(textToCheck);
    view.setText(!ambiguousIndexes.isEmpty() ? 
            ambigousIndexesToMessage(ambiguousIndexes) : "No ambiguous word/s found.");
}

/**
 * @param text checked for ambiguous words
 * @return the list of indexes of the ambiguous words in the {@code words} array          
 */
private List<Integer> findAmbiguousWordIndexes(String text) {
    final String lowerCasedText = text.toLowerCase();
    final List<Integer> ambiguousWordIndexList = new ArrayList<Integer>();

    words = (String[]) colWords.toArray(new String[colWords.size()]);
    meanings = (String[]) colMeanings.toArray(new String[colMeanings.size()]);

    for (int i = 0; i < words.length; i++) {
        if (lowerCasedText.contains(words[i].toLowerCase())) {
            ambiguousWordIndexList.add(i);
        }
    }
    return ambiguousWordIndexList;
} 

public String ambigousIndexesToMessage(List<Integer> ambiguousIndexes) {
    // create the text using the indexes
    // this is an example implementation
    StringBuilder sb = new StringBuilder();

    for (Integer index : ambiguousIndexes) {
        sb.append("Ambiguous words: ");
        sb.append(words[index] + "\nMeaning: " + meanings[index] + "\n");
        sb.append("");
    }
    return sb.toString(); 
}

ただし、2 つのレコードを表示するだけです。id 1 と id 2 の両方。ランダムに 1 つのレコードのみを表示したいだけです。これに関して本当に助けが必要です。何か案は?よろしくお願いします。

4

1 に答える 1