Android Studio不会在界面的静态方法中停止。
示例:请参阅项目Conductor(版本getFilteredNotes
)的界面Utils.java中的方法0.9.3
:
public interface Utils {
// some lines removed for readability
static List<Note> getFilteredNotes(AppState appState) {
List<Note> notes = appState.notes();
NotesFilter filter = appState.filter();
return filter(ConsPStack.from(notes), note ->
filter == NotesFilter.ALL
|| filter == NotesFilter.CHECKED && note.checked
|| filter == NotesFilter.UNCHECKED && !note.checked);
}
当我将接口转换为类时,它可以工作:
public class Utils
为什么断点不能在界面上起作用?
更多详情:
2.2.2
Nexus_6_API_25.avd
7.1.1
x86
minifyEnabled=false
没有帮助