gpt4 book ai didi

java - SimpleCursorAdapter 删除值

转载 作者:行者123 更新时间:2023-12-01 15:40:39 26 4
gpt4 key购买 nike

我的每一行都有一个 ListView,我有一个 LinearLayout,其中包含一些对象(主要是一些 TextView)。

这个ListView我从光标动态填充它。在这个游标中,我有一个值 true 或 false。

我想隐藏或使值为 false 的行不可点击。我尝试了这段代码,但不起作用

public void contentProviderInitialized(final Cursor cursor) {

SimpleCursorAdapter commonTickets = new SimpleCursorAdapter(MyClass.this,
R.layout.row_ticketing, cursor, new String[] {"price", "productName", "stopName" },
new int[] { R.id.ticketing_price, R.id.ticketing_product, R.id.ticketing_stop_name }
) {
@Override
public void bindView(View view, Context context, Cursor cursor) {
String enabledStr = cursor.getString(cursor.getColumnIndex("enabled"));
String product = cursor.getString(cursor.getColumnIndex("productName"));
boolean enabled = Boolean.parseBoolean(enabledStr);
LinearLayout ticketingRow = (LinearLayout) view.findViewById(R.id.ticketing_row);
if (enabled) {
ticketingRow.setEnabled(true);
} else {
ticketingRow.setEnabled(false);
}
super.bindView(view, context, cursor);
};
MyClass.this.ticketing_list_view.setAdapter(commonTickets);
}
}

最佳答案

覆盖适配器上的 isEnabled

http://developer.android.com/reference/android/widget/BaseAdapter.html#isEnabled(int )

这个答案似乎暗示了这一点。在光标上使用 movetoposition。不过,听起来性能会很差,所以您可能想根据数字位置对真/假值进行一些缓存?试试看。看看进展如何。缓存可能会造成浪费。

关于java - SimpleCursorAdapter 删除值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8096110/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com