我正在尝试采用无限的适配器。有一个活动 - 比如ClipsActivity它扩展了扩展Activity的抽象类。在一些例子中,我看到Activity从ListActivity扩展 - 它是否至关重要?我还有一个扩展基本适配器的列表适配器,而在示例中使用了ArrayAdapter。当我到达列表的末尾时,我收到错误(在下面记录)
你是否会指出问题可能是什么以及这种实施Endless的方式是否存在不确定性?另外,我希望通过详尽的示例链接。我见过演示 - 但这对我来说还不够清楚。 感谢。
我的活动
public class ClipsActivity extends AbstractActivity{
@Override
public void onCreate(Bundle savedInstanceState) {
try {
super.onCreate(savedInstanceState);
setContentView(R.layout.clips);
_init();
ListView clipList = (ListView) findViewById(R.id.clipList);
EndlessClipListAdapter endlessClipsList = new EndlessClipListAdapter(getApplicationContext(), new ClipListAdapter(this, _getClips()), R.id.downloadBar);
clipList.setAdapter(endlessClipsList);
} catch (HTTPFactoryException e) {
e.printStackTrace();
}
}
我的无尽的适应者
public class EndlessClipListAdapter extends EndlessAdapter {
private RotateAnimation rotate=null;
public EndlessClipListAdapter(Context context, ListAdapter wrapped, int pendingResource) {
super(context, wrapped, pendingResource);
rotate=new RotateAnimation(0f, 360f, Animation.RELATIVE_TO_SELF,
0.5f, Animation.RELATIVE_TO_SELF, 0.5f);
rotate.setDuration(600);
rotate.setRepeatMode(Animation.RESTART);
rotate.setRepeatCount(Animation.INFINITE);
}
@Override
protected boolean cacheInBackground() throws Exception {
SystemClock.sleep(10000);
return(getWrappedAdapter().getCount()<14);
}
@Override
protected void appendCachedData() {
if (getWrappedAdapter().getCount()<14) {
}
}
@Override
protected View getPendingView(ViewGroup parent) {
//View row=getLayoutInflater().inflate(R.layout.row, null);
//LayoutInflater inflater = (LayoutInflater) context.getSystemService( Context.LAYOUT_INFLATER_SERVICE );
LayoutInflater inflater = (LayoutInflater) this.getContext().getSystemService( Context.LAYOUT_INFLATER_SERVICE );
View row = inflater.inflate(R.layout.row, null);
View child=row.findViewById(android.R.id.text1);
child.setVisibility(View.GONE);
child=row.findViewById(R.id.throbber);
child.setVisibility(View.VISIBLE);
child.startAnimation(rotate);
return(row);
}
}
logcat的
04-20 13:41:43.083: W/dalvikvm(480): threadid=1: thread exiting with uncaught exception (group=0x40015560)
04-20 13:41:43.093: E/AndroidRuntime(480): FATAL EXCEPTION: main
04-20 13:41:43.093: E/AndroidRuntime(480): java.lang.IndexOutOfBoundsException: Invalid index 15, size is 15
04-20 13:41:43.093: E/AndroidRuntime(480): at java.util.ArrayList.throwIndexOutOfBoundsException(ArrayList.java:257)
04-20 13:41:43.093: E/AndroidRuntime(480): at java.util.ArrayList.get(ArrayList.java:311)
04-20 13:41:43.093: E/AndroidRuntime(480): at ru.localhost.xxxx.android.view.ClipListAdapter.getItemId(ClipListAdapter.java:47)
04-20 13:41:43.093: E/AndroidRuntime(480): at com.commonsware.cwac.adapter.AdapterWrapper.getItemId(AdapterWrapper.java:127)
04-20 13:41:43.093: E/AndroidRuntime(480): at android.widget.AdapterView.getItemIdAtPosition(AdapterView.java:745)
04-20 13:41:43.093: E/AndroidRuntime(480): at android.widget.AdapterView.setSelectedPositionInt(AdapterView.java:1088)
04-20 13:41:43.093: E/AndroidRuntime(480): at android.widget.ListView.arrowScrollImpl(ListView.java:2324)
04-20 13:41:43.093: E/AndroidRuntime(480): at android.widget.ListView.arrowScroll(ListView.java:2287)
04-20 13:41:43.093: E/AndroidRuntime(480): at android.widget.ListView.commonKey(ListView.java:2089)
04-20 13:41:43.093: E/AndroidRuntime(480): at android.widget.ListView.onKeyDown(ListView.java:2036)
04-20 13:41:43.093: E/AndroidRuntime(480): at android.view.KeyEvent.dispatch(KeyEvent.java:1256)
04-20 13:41:43.093: E/AndroidRuntime(480): at android.view.View.dispatchKeyEvent(View.java:3855)
04-20 13:41:43.093: E/AndroidRuntime(480): at android.view.ViewGroup.dispatchKeyEvent(ViewGroup.java:787)
04-20 13:41:43.093: E/AndroidRuntime(480): at android.widget.ListView.dispatchKeyEvent(ListView.java:2021)
04-20 13:41:43.093: E/AndroidRuntime(480): at android.view.ViewGroup.dispatchKeyEvent(ViewGroup.java:789)
04-20 13:41:43.093: E/AndroidRuntime(480): at android.view.ViewGroup.dispatchKeyEvent(ViewGroup.java:789)
04-20 13:41:43.093: E/AndroidRuntime(480): at android.view.ViewGroup.dispatchKeyEvent(ViewGroup.java:789)
04-20 13:41:43.093: E/AndroidRuntime(480): at android.view.ViewGroup.dispatchKeyEvent(ViewGroup.java:789)
04-20 13:41:43.093: E/AndroidRuntime(480): at android.view.ViewGroup.dispatchKeyEvent(ViewGroup.java:789)
04-20 13:41:43.093: E/AndroidRuntime(480): at com.android.internal.policy.impl.PhoneWindow$DecorView.superDispatchKeyEvent(PhoneWindow.java:1687)
04-20 13:41:43.093: E/AndroidRuntime(480): at com.android.internal.policy.impl.PhoneWindow.superDispatchKeyEvent(PhoneWindow.java:1120)
04-20 13:41:43.093: E/AndroidRuntime(480): at android.app.Activity.dispatchKeyEvent(Activity.java:2073)
04-20 13:41:43.093: E/AndroidRuntime(480): at com.android.internal.policy.impl.PhoneWindow$DecorView.dispatchKeyEvent(PhoneWindow.java:1663)
04-20 13:41:43.093: E/AndroidRuntime(480): at android.view.ViewRoot.deliverKeyEventToViewHierarchy(ViewRoot.java:2560)
04-20 13:41:43.093: E/AndroidRuntime(480): at android.view.ViewRoot.handleFinishedEvent(ViewRoot.java:2535)
04-20 13:41:43.093: E/AndroidRuntime(480): at android.view.ViewRoot.handleMessage(ViewRoot.java:1867)
04-20 13:41:43.093: E/AndroidRuntime(480): at android.os.Handler.dispatchMessage(Handler.java:99)
04-20 13:41:43.093: E/AndroidRuntime(480): at android.os.Looper.loop(Looper.java:123)
04-20 13:41:43.093: E/AndroidRuntime(480): at android.app.ActivityThread.main(ActivityThread.java:3683)
04-20 13:41:43.093: E/AndroidRuntime(480): at java.lang.reflect.Method.invokeNative(Native Method)
04-20 13:41:43.093: E/AndroidRuntime(480): at java.lang.reflect.Method.invoke(Method.java:507)
04-20 13:41:43.093: E/AndroidRuntime(480): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:839)
04-20 13:41:43.093: E/AndroidRuntime(480): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:597)
04-20 13:41:43.093: E/AndroidRuntime(480): at dalvik.system.NativeStart.main(Native Method)
答案 0 :(得分:1)
在一些例子中,我看到Activity从ListActivity扩展 - 它是否至关重要?
没有。欢迎您使用ListFragment
,或使用ListView
的简单活动。
我还有一个扩展基本适配器的列表适配器,而在示例中使用了ArrayAdapter。
适配器需要支持附加其他数据的概念。 ArrayAdapter
; CursorAdapter
没有。我不知道你的适配器是否会。
你能指出问题可能是什么
我不确定。你的appendCachedData()
实际上没有附加任何内容的事实可能是一个候选人。请阅读the documentation并按照其说明操作。
另外,我希望获得有关详尽示例的链接。
有demo/
子项目in the repo。
我见过演示 - 但这对我来说还不够清楚。
此模式还有其他实现方式;也许其中一个组件更适合你。