- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我有一个 ListView,它显示来自 ArrayAdapter 的项目。我想在点击时为 View 设置动画。问题是在不同版本的 android 上我得到不同的 View (见下文)
我正在使用此方法从 ListActivity 获取 View :
private View getViewForListPosition(int position) {
int firstPosition = mList.getFirstVisiblePosition() - mList.getHeaderViewsCount();
int wantedChild = position - firstPosition;
ZLog.d(LOG,"getViewForListPosition , position : " + position + ", wantedChild : " + wantedChild + ", view hash : " +mList.getChildAt(wantedChild).hashCode());
for(int i = mList.getChildCount(); i>0; i--){
ZLog.d(LOG, "pos : " + (i-1) + ", hash : " +mList.getChildAt(i-1).hashCode());
}
return mList.getChildAt(wantedChild);
}
因此在 Android 4.0.3 和 4.2.2 手机上我得到:
getViewForListPosition , position : 3, wantedChild : 3, view hash : 1101734248
pos : 5, hash : 1104109360
pos : 4, hash : 1104254936
pos : 3, hash : 1101734248
pos : 2, hash : 1104876880
pos : 1, hash : 1104862296
pos : 0, hash : 1104793008
然后当项目被点击时,我的适配器 getView
方法为每个 View 运行:
getView, position : 0, convertView is notnull, cv hash1104793008
getView, position : 1, convertView is notnull, cv hash1104862296
getView, position : 2, convertView is notnull, cv hash1104876880
getView, position : 3, convertView is notnull, cv hash1101734248
getView, position : 4, convertView is notnull, cv hash1104254936
getView, position : 5, convertView is notnull, cv hash1104109360
因此您可以看到一切都很好并且按预期工作。然而,当我在 Android 2.2 上运行时,这些是我得到的结果:
getViewForListPosition , position : 3, wantedChild : 3, view hash : 1205607672
pos : 5, hash : 1205730120
pos : 4, hash : 1205712904
pos : 3, hash : 1205607672
pos : 2, hash : 1206547728
pos : 1, hash : 1206483960
pos : 0, hash : 1207864856
getView, position : 0, convertView is notnull, cv hash1205730120
getView, position : 1, convertView is notnull, cv hash1205712904
getView, position : 2, convertView is notnull, cv hash1205607672
getView, position : 3, convertView is notnull, cv hash1206547728
getView, position : 4, convertView is notnull, cv hash1206483960
getView, position : 5, convertView is notnull, cv hash1207864856
所以你可能已经注意到 getViewForListPosition
会返回适配器用于位置 2 的 View
您可能还注意到 Adapter.getView
或 ListView.getChildAt
以相反的顺序返回项目,这会导致此问题。这种行为的原因可能是什么? (我没有在我的适配器中做任何花哨的事情)
如果有任何提示,我将不胜感激。谢谢!
最佳答案
好的。所以这就是正在发生的事情:
在干净的 ListView
上,当我注册 onItemClickListener
并执行点击时,不会调用 View 的适配器 getView
方法。这是我所期望的。
如果我设置一个 mList.setChoiceMode(ListView.CHOICE_MODE_SINGLE)
这使得 getView
方法在点击被注册后立即运行。这也是意料之中的。
但是 2.2 和 4+ 版本之间的区别在于:在 2.2 上:当发生此刷新时 getView
对反向 View 列表进行操作(请参阅我的问题)在 4+ 上(可能是 API 11+):getView
按列表的正常顺序运行
最有趣的部分是,当我将对 getViewForListPosition 的调用延迟 10 毫秒时,一切正常,并且适配器具有正确的 View 列表(又是正常顺序)。因此,似乎只有在使用 CHOICE_MODE_SINGLE
为了解决这个问题,我没有将 ListView 模式更改为 CHOICE_MODE_SINGLE
,这样适配器在点击时就不会触发。我在 onItemClicked
希望它可以节省一些时间:)
关于android - 在 2.2 上获取 ListView 项目/倒序的 View ;适用于 4.0.3,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15783089/
我在我的 Xcode 项目目录中输入了以下内容: keytool -genkey -v -keystore release.keystore -alias mykey -keyalg RSA \
假设我有一个像这样的 DataFrame(或 Series): Value 0 0.5 1 0.8 2 -0.2 3 None 4 None 5 None
我正在对一个 Pandas 系列进行相对繁重的应用。有什么方法可以返回一些打印反馈,说明每次调用函数时在函数内部进行打印还有多远? 最佳答案 您可以使用跟踪器包装您的函数。以下两个示例,一个基于完成的
我有一个 DataFrame,其中一列包含列表作为单元格内容,如下所示: import pandas as pd df = pd.DataFrame({ 'col_lists': [[1, 2
我想使用 Pandas df.apply 但仅限于某些行 作为一个例子,我想做这样的事情,但我的实际问题有点复杂: import pandas as pd import math z = pd.Dat
我有以下 Pandas 数据框 id dist ds 0 0 0 0 5 1 0 0 7 2 0 0
这发生在我尝试使用 Gradle 构建时。由于字符串是对象,因此似乎没有理由发生此错误: No signature of method: java.util.HashMap.getOrDefault(
您好,有人可以解释为什么在 remaining() 函数中的 Backbone 示例应用程序 ( http://backbonejs.org/examples/todos/index.html ) 中
我有两个域类:用户 class User { String username String password String email Date dateCreated
问题陈述: 一个 pandas dataframe 列系列,same_group 需要根据两个现有列 row 和 col 的值从 bool 值创建。如果两个值在字典 memberships 中具有相似
apporable 报告以下错误: error: unknown type name 'MKMapItem'; did you mean 'MKMapView'? MKMapItem* destina
我有一个带有地址列的大型 DataFrame: data addr 0 0.617964 IN,Krishnagiri,635115 1 0.635428 IN,Chennai
我有一个列表list,里面有这样的项目 ElementA: Number=1, Version=1 ElementB: Number=1, Version=2 ElementC: Number=1,
我正在编译我的源代码,它只是在没有运行应用程序的情况下终止。这是我得到的日志: Build/android-armeabi-debug/com.app4u.portaldorugby/PortalDo
我正在尝试根据另一个单元格的值更改单元格值(颜色“红色”或“绿色”)。我运行以下命令: df.loc[0, 'Colour'] = df.loc[0, 'Count'].apply(lambda x:
我想弄清楚如何使用 StateT结合两个 State基于对我的 Scalaz state monad examples 的评论的状态转换器回答。 看来我已经很接近了,但是在尝试申请 sequence
如果我已经为它绑定(bind)了集合,我该如何添加 RibbonLibrary 默认的快速访问项容器。当我从 UI 添加快速访问工具项时,它会抛出 Operation is not valid whi
在我学习期间Typoclassopedia我遇到了这个证明,但我不确定我的证明是否正确。问题是: One might imagine a variant of the interchange law
我是一名优秀的程序员,十分优秀!