私は検索可能な辞書に取り組んでいます。SQLite データベースを使用します。辞書の形式は次のようになります (「-」で区切られた 2 列)
Apple - One kind of fruit
Cricket - One type of game
Titanic - One type of Movie
ここApple
は列A
であり、One kind of fruit
列ですB
以下のようにデータベースを更新しました
Apple - res/raw/Apple.txt
Titanic- res/raw/Titanic.txt
Apple.txt
ユーザー検索時にファイルを開いてテキストを表示したいApple
。しかし、私が使用しているサンプル コードは、ファイル、バッファ、および ViewText を開くためではなく、TextView 用に作成されています。
これは、アプリケーションの列 B を表示するコードです。
TextView details = (TextView) findViewById(R.id.details);
details.setMovementMethod(new ScrollingMovementMethod());
上記のコードを置き換えて、検索クエリから Apple.txt を開く方法を教えてください。
【投稿更新】