我正在尝试在gridview上的项目点击监听器上设置多个webview。
allBoardsGV = (GridView) findViewById(R.id.allBoardsGV);
BoardAdapter boardAdapter = new BoardAdapter(this);
boardAdapter.addAll(separateBoards);
allBoardsGV.setAdapter(boardAdapter);
allBoardsGV.setOnItemClickListener(new AdapterView.OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
Log.d("CLICK", "clicked");
Intent intent = new Intent(getApplicationContext(), ShowSingleBoard.class);
startActivity(intent);
}
});
当我将WebView更改为TextView监听器工作时,但是使用webview时没有任何反应。
也许有人遇到过类似的问题。 谢谢:))