ListView
最初に項目を選択 (強調表示) してから、別のアクティビティに移動する前にボタンをクリックしたいと考えています。
これが私がやりたいことの例です:
これがListViewの作成方法です(データベースからエントリを取得します)
ListView lv = (ListView) findViewById(R.id.lvListOfCustomers);
String strDBName = "db_customers.s3db";
File fileDB = new File(
Environment
.getExternalStoragePublicDirectory(Environment.DIRECTORY_DOWNLOADS),
strDBName);
SQLiteDatabase dbLibrary = SQLiteDatabase.openOrCreateDatabase(fileDB,
null);
// Start - Cursor and Queries of List of Customers(ListView)
String sqlQuery = "select _id, customer_name as cName, customer_address as cAddress, customer_status as cStatus from tbl_customers";
Cursor cur = (Cursor) dbLibrary.rawQuery(sqlQuery, null);
@SuppressWarnings("deprecation")
SimpleCursorAdapter sca = new SimpleCursorAdapter(
this.getApplicationContext(),
R.layout.lv_list_of_customers_txtview, cur, new String[] {
"cName", "cAddress", "cStatus" }, new int[] {
R.id.tvCustomersName, R.id.tvCustomersAddress,
R.id.tvCustomersId }, CursorAdapter.FLAG_AUTO_REQUERY);
lv.setAdapter(sca);
// End - Cursor and Queries of List of Customers(ListView)
// Start - Make the items highlighted
int selectedListItem = getIntent().getIntExtra("PositionInList", -1);
lv.setChoiceMode(ListView.CHOICE_MODE_SINGLE);
lv.setSelection(selectedListItem);
// End - Make the items highlighted
これがボタン用に作成したものです
case R.id.bCallRemarks:
// TODO Auto-generated method stub
Button bCRemarks = (Button) findViewById(R.id.bCallRemarks);
bCRemarks.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
ListView.OnItemClickListener oicl = new ListView.OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> av, View view,
int pos, long id) {
// TODO Auto-generated method stub
Cursor c = (Cursor) av.getItemAtPosition(pos);
String cName = c.getString(c
.getColumnIndexOrThrow("cName"));
Intent intent = new Intent(getApplication(),
CallRemarks.class);
intent.putExtra("CustomerName", cName);
Toast.makeText(av.getContext(), cName,
Toast.LENGTH_SHORT).show();
Intent CallRemarksScreen = new Intent(
getApplicationContext(), CallRemarks.class);
startActivity(CallRemarksScreen);
}
};
}
});
ListView
下部に複数のボタンがあるため、これを尋ねました。そのため、機能 (ボタン) を選択する前に、最初の項目を選択する必要があります。