我有一份清单,显示一定数量的数据,在底部有一顿,可以要求装上更多的数据。 情况如下:
CustomArrayAdapter a = GetInitialData();
LayoutInflater layoutInflater =
(LayoutInflater)context.getSystemService( Context.LAYOUT_INFLATR_SERVICE );
LinearLayout ll =
(LinearLayout)layoutInflater.inflate(R.layout.more_button_layout, null, false);
Button b = (Button)ll.findViewById(R.id.more_button);
b.setOnClickListener(new OnClickListener() {
public void onClick(View v) {
a.loadNextPage();
}
});
lv.addFooterView(ll);
lv.setAdapter(a);
问题是,每当我向纽特施加压力时,我就在适应者自己掌握的电动器中获得了同步的消化。 我认为,这是因为在清单中点燃时,有人叫上装载NextPage,但我无法说明如何做到这一点。