我正在浏览网络并查找代码示例并尝试理解它们。在这个我相信 super 什么都不做是正确的。在 ecipe 它告诉我它来自 Objects 类。在 Java 中有一个教程。
我正在尝试了解我将对象创建为“ArrayAdapter”和“ListAdapter”之间的联系,并且在 Android 4 开放模板中他们使用“ListFragment”,所以即使我不明白这是我也会相信的正确学习这种将列表添加到页面以进行“主详细信息”选择的方式。
链接Java 教程:: Android 文档:: ArrayAdapter 教程
我想我只是错过了船。
public class Weather {
public int icon;
public String title;
public Weather(){
super();
}
public Weather(int icon, String title) {
super();
this.icon = icon;
this.title = title;
}
}