我有一个带有动态操作标签的<?php namespace App\Http\Controllers;
use Illuminate\Foundation\Bus\DispatchesCommands;
use Illuminate\Routing\Controller as BaseController;
use Illuminate\Foundation\Validation\ValidatesRequests;
abstract class Controller extends BaseController {
use DispatchesCommands, ValidatesRequests;
}
。例如:
EditText
如果在调用// Checkbox selected
mEditText.setImeActionLabel("label1", R.id.action_label1);
// Checkbox unselected
mEditText.setImeActionLabel("label2", R.id.action_label2);
时看到软输入,则不会刷新它的状态。在动作标签正确更新之前,需要清除setImeActionLabel
的焦点。
是否有任何类型的解决方法,或者我使用它是错误的?
感谢。