国のTextViewのListViewがあり、TextViewの1つを短く押すと、押されたtextviewが削除されます。OptionsMenu項目を実行しました。「国を削除」の項目を押すと、iPhoneの例のようにすべてのTextViewの横にボタンが表示されます。
ListViewはアダプタによって作成されます。どうすればよいかという概念だけで答えは必要ありません([オプション]メニューから国を削除することを選択した後、すべてのTextViewの横に作成される[削除]ボタン)。
public class CountryAdapter extends BaseAdapter {
private Context mContext;
protected Vector<Country> mVector;
protected SQLiteDatabase mDb;
public void setmContext(Context mContext){
this.mContext = mContext;
}
public CountryAdapter(Context mContext){
this.mContext = mContext;
mVector = new Vector<Country>();
CountryOpenHelper helper = new CountryOpenHelper(mContext);
mDb = helper.getWritableDatabase();
Cursor cursor = mDb.rawQuery("SELECT * FROM COUNTRIES", null);
if(cursor.getCount() > 0){
cursor.moveToFirst();
}
do {
Country country = new Country();
country.setmCountryIndex(cursor.getInt(0));
country.setmCountryName(cursor.getString(2));
country.setmCountryTextSize(cursor.getInt(1));
country.setmCountryColor(cursor.getInt(3));
mVector.add(country);
} while (cursor.moveToNext());
}
public Vector<Country> getmVector() {
return mVector;
}
@Override
public int getCount() {
// TODO Auto-generated method stub
return mVector.size();
}
@Override
public Object getItem(int position) {
// TODO Auto-generated method stub
return null;
}
@Override
public long getItemId(int position) {
// TODO Auto-generated method stub
return 0;
}
@Override
public View getView(int position, View convertView, ViewGroup parent) {
TextView tv;
if(convertView == null){
tv = new TextView(mContext);
}else{
tv = (TextView) convertView;
}
tv.setText(mVector.get(position).getmCountryName());
tv.setTextColor(mVector.get(position).getmCountryColor());
tv.setTextSize(mVector.get(position).getmCountryTextSize());
return tv;
}
public void ChangeColor(int newcolor, String name) {
mDb.execSQL("update COUNTRIES set color = " + newcolor + " where name = '" + name + "' " );
}
public void addCountry(int mId, String myCountry, int myColorNum){
mDb.execSQL("insert into countries values(" + mId + " , ' " + myCountry+"' , "+ myColorNum + ")");
}
public void delete(int position) {
int mDeletedId = mVector.get(position).getmCountryIndex();
mVector.remove(position);
mDb.execSQL("DELETE FROM countries WHERE id ="+mDeletedId);
}
public void ChangeTextSize(int textSize, int mIndex) {
System.out.println(textSize);
System.out.println(mIndex);
mDb.execSQL("update COUNTRIES set font = " + textSize + " where id =" + mIndex);
}
}
optionMenuの[国の削除]からクリックすると、すべてのTextViewの横にプログラムで削除ボタン(または他の何か)が追加され、それらのボタンすべてに同じメソッド(削除)が適用されます。