0

在书籍和互联网中,例如这里的Android 处理 ListView 中的许多 EditText 字段,TextWatcher 是类,但在 android devoloper 上它是接口http://developer.android.com/reference/android/text/TextWatcher.html。而Eclipse说,它是接口。谁是对的?)

4

2 回答 2

1

TextWatcher 是一个接口。在您给出的示例中,它用作接口,MyTextWatcher 类实现了 TextWatcher 接口。如果 TextWatcher 是一个类,则需要使用extends

界面:

private class MyTextWatcher implements TextWatcher {

班级:

private class ThisWontWork extends TextWatcher {
于 2012-12-29T05:25:43.203 回答
0

TextWatcher 是接口...在 android.text.TextWatcher

public interface TextWatcher implements NoCopySpan
于 2017-11-22T14:39:18.320 回答