我在具有自定义行布局(2 个 TextViews)的 LinearLayout 中使用 ListView。ListView 填充了来自原始文件的字符串。我也在android:fastScrollEnabled="true"
ListView 上使用。我还实现了 onClickListener。在模拟器上测试应用程序,它工作正常,可以单击所有项目并且该项目的活动开始。但是在实际设备上进行测试时,10000 多个项目中只有大约 100 个可以点击。单击其他人时,没有任何反应。下面的代码有什么问题吗?
InputStream inputStream = getResources().openRawResource(R.raw.definitions);
BufferedReader reader = new BufferedReader(new InputStreamReader(inputStream));
String line;
try
{
HashMap<String, String> item;
while ((line = reader.readLine()) != null)
{
String[] strings = TextUtils.split(line, ";");
if (strings.length <= 2)
{
item = new HashMap<String, String>();
item.put("line1", strings[0].trim());
item.put("line2", strings[1].trim());
list.add(item);
}
}
mTextView.setText("");
sa = new SimpleAdapter(this, list,
R.layout.result,
new String[] { "line1","line2" },
new int[] {R.id.word, R.id.definition});
mListView.setAdapter(sa);
reader.close();
mListView.setOnItemClickListener(new OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> parent, View view, int position, long id)
{
Intent wordIntent = new Intent(getApplicationContext(), GesloActivity.class);
Uri data = Uri.withAppendedPath(PodajalecGesel.CONTENT_URI,
String.valueOf(id+1));
wordIntent.setData(data);
startActivity(wordIntent);
}
});
}
catch (IOException e)
{
e.printStackTrace();
}