我的应用程序主页有一个按钮,可将您带到具有(TextView)问题的 ScrollView 列表的页面。单击一个问题将带您到答案,即单击问题 1 将带您到活动答案 1,我在 ScrollView 中有 19 个问题和 19 个单独的答案活动。在答案页面中,有一个按钮可将您带回问题页面。
这是我的问题,id 像答案返回按钮将我带回我离开它的问题页面,例如在 ScrollView 的底部,如果列表不返回顶部。此外,在浏览完问题和答案后,我想通过单击手机返回物理按钮而不是通过我查看过的每个页面从问题页面返回主页。
我当前的问题代码实现了 OnClickListener
@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
setContentView(R.layout.questions);
Q1.setOnClickListener(this);
Q2.setOnClickListener(this);
Q1 = (TextView) findViewById(R.id.tvQ1);
Q2 = (TextView) findViewById(R.id.tvQ2);
公共无效 onClick(查看 v){
switch (v.getId()) { case R.id.tvQ1: Intent a1 = new Intent(this, AnswerOne.class); startActivity(a1); break; case R.id.tvQ2: Intent a2 = new Intent(this, AnswerTwo.class); startActivity(a2); break;
如果您需要更多信息,请询问。谢谢