如果您想对该接口进行分解使用,请使用您的实现,例如Activity
:OnFocusChangeListener()
public class Shops extends AppCompatActivity implements View.OnFocusChangeListener{
在你的OnCreate
你可以添加一个监听器,例如:
editTextResearch.setOnFocusChangeListener(this);
editTextMyWords.setOnFocusChangeListener(this);
editTextPhone.setOnFocusChangeListener(this);
然后android studio会提示你从界面添加方法,接受它......它会像:
@Override
public void onFocusChange(View v, boolean hasFocus) {
// todo your code here...
}
因为你有一个分解的代码,你只需要这样做:
@Override
public void onFocusChange(View v, boolean hasFocus) {
if (!hasFocus){
doSomethingWith(editTextResearch.getText(),
editTextMyWords.getText(),
editTextPhone.getText());
}
}
这应该够了吧!