Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
リストビューにディレクトリとリストのリストがあります
すべてのアイテムのテキストの一部を削除したい 00 3-0 rec deele アイテムから。
これを行う簡単な方法は、リスト ビュー用にアダプターでテキストをフォーマットすることです。
アダプターの getView で実行できます
yourString.replace("00 3-0",""); を使用します。getView またはアイテムのリストで、それらを繰り返します。
こちらをご覧ください
これを変える
list.add(m.group(1));
に
list.add((m.group(1)).replace("00 3-0",""));