我正在使用cwac-endless适配器,当我尝试加载更多结果时,我在禁用单击待处理视图时遇到问题。
这是我用于扩展 EndlessAdapter 的自定义适配器的构造函数。R.layout.pending 在加载时会膨胀。我想禁用单击此列表项。
public class MyEndlessAdapter extends EndlessAdapter{
public MyEndlessAdapter(Context context, ListAdapter wrapped, int pendingResource) {
super(context, wrapped, R.layout.pending);
}
}
R.layout.pending xml 是...
<?xml version="1.0" encoding="utf-8"?>
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/text1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceLarge"
android:textColor="@color/white"
android:textStyle="bold"
android:gravity="center_vertical"
android:paddingLeft="6dip"
android:minHeight="?android:attr/listPreferredItemHeight"
android:text="Getting more results..."
/>
我尝试的是为 TextView 提供 android:clickable="false",但它不起作用。
所以,我想知道这个问题是否有任何解决方法。