我想从其他类中选择列表视图中的下一行位置,但我不知道该怎么做。我得到了将点击的位置传递给其他班级的列表。在 onItemclick 监听器中
public void onItemClick(AdapterView<?> vie, View view,
int agr2 , long agr3){
Intent i = new Intent(context, Test.class);
i.putExtra("numbers", agr2);
startActivity(i);
}
在 test.java 中,我得到了值并将值设为
Bundle extras = getIntent().getExtras();
int num = extras.getInt("numbers");
TextView tv = (TextView) findViewById(R.id.textviews);
int randomb = 1;
int rand = num - randomb;
if (rand == -1){
rand = 100;
}
tv.setText("next row to go to : "+ rand +" selectedrow : "+ num );
所以我的目标是我如何将 int“rand”放在某个地方,以便它进入下一行,当我说我按下按钮或计时器归零时。
提前致谢。