我完全理解TopSectionListener是一个用于将活动连接到片段的方法。但为什么我们不必要地引入activitycommander?活动指挥官在这是什么?
TopSectionListener activityCommander;
public interface TopSectionListener {
public void creatememe(String top, String bottom);
}
请帮忙!
答案 0 :(得分:0)
以下是更好地理解代码的安排:
public interface TopSectionListener {
public void creatememe(String top, String bottom);
}
TopSectionListener activityCommander;
MainActivity
)进行通信,创建了一个界面TopSectionListener
及其变量activityCommander
; TopSectionListener
这里是数据类型(接口),可用于声明自己的变量,如activityCommander。onAttach()
TopSectionFragment
)