Android Sqlite显示随机行

时间:2013-10-22 07:24:42

标签: android sqlite

我正在开发一款应用。它做了什么,用户会输入一些句子,然后应用程序将获得模糊的单词,然后显示它的含义。在我的表中,我有_id,word,含义,definition_number等字段。

样本数据:
_id字义定义编号
1休息以暂停某事1 2打破切成碎片2

如果用户输入:我的休息非常快。 预期的输出是:
含糊不清的字:打破 含义:暂停某事

我想随机显示它。这是我的 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(); 
}

但它只是显示两条记录。 id 1和id 2.我只想随机显示一条记录。我真的需要帮助。有任何想法吗?我很乐意欣赏它。

1 个答案:

答案 0 :(得分:3)

您排序RANDOM(),但您还需要添加LIMIT 1才能返回一个结果行。有一个overload of SQLiteDatabase.query() that takes in a limit parameter

this.myDataBase.query(DB_TABLE, new String[] { 
                        KEY_ID, KEY_WORD, KEY_MEANING }, 
                        null, null, null, null, "RANDOM()", "1");