0

何らかの理由で、この画像の赤い部分のような Edittext が必要なため:

ここに画像の説明を入力

ユーザーがキーボードの削除ボタンを押すたびに、edittext は 1 つの単語ではなく 1 つのトークンを削除します。だから、私の質問は次のとおりです。そのような存在コントロールはありますか? またはそうでない場合は、カスタマイズする方法を知っていますか. 注:100%同じである必要はありません。現在、削除機能に TextWatcher または setKeyListener メソッドを使用することを考えています。

助けてくれてありがとう。そして、私の英語があまり上手ではないので申し訳ありません。

4

2 に答える 2

1

The Android AOSP email client has something like you seem trying to do. It is open source.

From this commit you see, that Google calls "chip" what you call "badge".

You should find all information regarding what it takes to implement such chips from the commit above, which I guess, was the first time Google introduced such chips (at least to mail), or in the whole source of the AOSP email client:

Integrate chips into Email.

Change-Id: Ice037a55a169037f725a667fad7714c7e9580b86

于 2012-11-09T16:17:06.570 に答える