cod*_*441 8 compatibility android
我正在使用此方法检查列表中已检查的项目数,并且我得到此错误,此方法不适用于任何早于11的SDK.
API级别8中的等价物是什么
Tak*_*ion 12
接受的答案对我不起作用(总是返回0),我不得不使用以下代码:
public static int getCheckedItemCount(ListView listView)
{
if (Build.VERSION.SDK_INT >= 11) return listView.getCheckedItemCount();
else
{
int count = 0;
for (int i = listView.getCount() - 1; i >= 0; i--)
if (listView.isItemChecked(i)) count++;
return count;
}
}
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
1698 次 |
| 最近记录: |