我的适配器上出现了一个稍微奇怪的错误。适配器正在创建的视图是左侧的缩略图和包含几行的表格。每行有两个文本视图。
其中android:autoLink="web"
一个文本视图设置了属性,而列表视图上有一个 onItemClickListener。
问题是每次 TextView 自动链接它的内容时,下一次转换它的父视图时,它不再接收来自 onItemClickListener 的点击。
让我用一个例子来澄清:
- view1、view2、view3 和 view4 在屏幕的列表视图中。
- view2 有一个链接,它会出现,然后 onClick 链接会打开。
- 项目单击对 view1、view 3 和 view4 正常工作。
- 滚动列表视图,view1 转换为 position5,然后 view2 转换为 position6。
- position6 处的项目不包含链接,但 onItemClick 也不会为 position6 元素触发。
textview 的自动链接功能肯定会改变我的布局,但我不知道是什么。必须有一个属性我可以为我的适配器上的每次调用 getView 重置,但是哪个?
谢谢你的帮助。
编辑
让我们看一些代码,这是非常标准/良好的做法。我的适配器的 getView 是:@Override public View getView(int position, View convertView, ViewGroup parent) {
// Inflate a new layout if needed
if (convertView == null)
convertView = createNewView();
// Gets the item from my array
AGplus item = (AGplus) getItem(position);
// Gets the holder pointing to the views
Holder h = (Holder) convertView.getTag();
// That's a test version, I won't be using date.toString() later on
h.date.setText(new Date(item.getDate()).toString());
// This guys is giving me a headache,
// If it parses the link, I can't never click on this convertView anymore,
// event re-converting them for a text that does not contain links
h.txt.setText(item.getTitle());
// some image download stuff that doesn't matter for this code
return convertView;
}
使用的布局是图像和表格,并且我在表格上膨胀和插入的行数因每个适配器而异。表格布局是带有图像视图的水平线性布局和带有一些边距的表格布局,这是行布局:
<?xml version="1.0" encoding="utf-8"?>
<TableRow xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<TextView
android:id="@+id/title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceSmall"
android:textColor="@color/text" />
<TextView
android:id="@+id/text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:autoLink="web"
android:text=""
android:textAppearance="?android:attr/textAppearanceSmall"
android:textColor="@color/text" />
</TableRow>
如果我完全删除android:autoLink="web"
我会获得所有点击,但如前所述,一旦视图获得“自动链接”然后我回收该视图,我将无法再次点击该视图。
编辑
这是布局膨胀:
private View createNewView() {
// Instantiate view
View v = getLayoutInflater().inflate(R.layout.expandable_child_view, null);
TableLayout table = (TableLayout) v.findViewById(R.id.table);
Holder h = new Holder();
v.setTag(h);
// Instantiate rows
h.thumb = (ImageView) v.findViewById(R.id.img);
h.date = (TextView) createNewRow(table, "Date: ");
h.txt = (TextView) createNewRow(table, "Text: ");
return v;
}
private View createNewRow(ViewGroup group, String title) {
View row;
row = getLayoutInflater().inflate(R.layout.item_table_row, null);
((TextView) row.findViewById(R.id.title)).setText(title);
group.addView(row);
return row.findViewById(R.id.text);
}
在别人问之前,这就是 expandable_child_view 布局:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/frame"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center_vertical" >
<ImageView
android:id="@+id/img"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="20dp"
android:layout_marginLeft="40dp"
android:layout_marginRight="5dp"
android:layout_marginTop="20dp"
android:src="@drawable/ic_launcher" />
<TableLayout
android:id="@+id/table"
android:layout_width="match_parent"
android:layout_height="match_parent" >
</TableLayout>
</LinearLayout>
正如我之前所说,只是一个带有图像视图和表格以及一些边距的线性布局。