0

私のデータベース コードでは、現在、SQLite データベースの ID 列を調べています。現時点では、これは、たとえばテキストビューに配置したときにすべてのエントリをリストしている文字列変数を返しています。しかし、その変数をある種のリストビュー (または同様のもの) に入れ、ユーザーがそのリストビューをクリックして、その主キーに関連する残りの情報を表示できるようにしたいと考えています。私は調査を行っており、これを行うためのチュートリアルを見つけましたが、それらは私がやりたいことに合わず、正確には機能しませんでした. 以下は、リストビューを表示したいアクティビティのコードです。ありがとう。

public class View_Saved_Dates extends Activity {
ListView list;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_view_saved_dates);       
    list = (ListView)findViewById(R.id.listView1);

    Database info = new Database(this);
    info.open();
    //I want to put the variable below which lists all data within the id column of my database into a list view or some sort of list where I can 
    //click the id and bring up the rest of the information in the databse.
    String cowid = info.getCowid();

    info.close();
    }
}
4