如何定制"加载更多......" Android中的ParseQueryAdapter中的铭文?当我们在适配器中有超过25个项目时,它会出现。
答案 0 :(得分:2)
如果您在自定义适配器中使用ParseQueryAdapter,则可以尝试此操作。它对我有用。
覆盖此方法
@Override
public View getNextPageView(View v, ViewGroup parent) {
if (v == null) {
// v = getDefaultView(parent.getContext());
v = View.inflate(getContext(), R.layout.activity_home_footer, null);
/*
*R.layout.activity_home_footer is your custom layout which contains a TextView named btn_load_more*
*/
}
TextView textView = (TextView) v.findViewById(R.id.btn_load_more); //set the button
textView.setText("Load more... (Customized Load more button)");
return v;
}
希望它有所帮助!