リスト ビューに simplecursoradapter を設定しています アイテムにアニメーションを追加する方法はありますか?アイテムが 1 つずつ表示されるようになると、Android サウンド ピッカー アプリのようなものが必要です。
Cursor c = db.rawQuery(mySQL, null);
SimpleCursorAdapter adapter = new SimpleCursorAdapter(this, R.layout.list_item, c,
columns, new int[] {R.id.list_item_text_sub,R.id.list_item_text_main,R.id.list_item_text_id,R.id.list_item_img}, 0);
adapter.setViewBinder(new CustomViewBinder());
ListView list = (ListView) findViewById(R.id.list_poet_name);
list.setAdapter(adapter);