0

ボタンクリックで1つのクラスからアクティビティのリストからランダムなアクティビティに移動する最良の方法が必要です... Javaのどこに配置する必要があるかを述べてください..すでに1つの方法を試していることがわかりますが、できません他を繰り返すと、何らかの理由で、Javaが認識していないrandでエラーが発生します..事前に感謝します

    package com.example.whattodo2;

    import java.util.Random;

    import android.os.Bundle;
    import android.app.Activity;
     import android.content.Intent;

    import android.view.Menu;
    import android.view.View;

    import android.view.animation.Animation;
    import android.view.animation.AnimationUtils;
    import android.widget.Button;
    import android.widget.ImageView;


    public class Title extends Activity {



    Button reset, rts;
    ImageView title;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_title);
        Animation a = AnimationUtils.loadAnimation(this, R.animator.animation);
         ImageView rImage = (ImageView) findViewById(R.id.title);
         rImage.startAnimation(a);
         func();

        reset = (Button) findViewById(R.id.reset);
        reset.setOnClickListener(new View.OnClickListener() {

                    @Override
                    public void onClick(View arg0) {
                        if(rand < 0.5){
                               Intent reset1 = new Intent(Title.this, MainActivity.class);
                               startActivity(reset1);
                           } else {
                               Intent reset2 = new Intent(Title.this, Question36.class);
                               startActivity(reset2); }
                    }
                });
        rts = (Button) findViewById(R.id.rts);
        rts.setOnClickListener(new View.OnClickListener() {

                    @Override
                    public void onClick(View arg0) {
                        // TODO Auto-generated method stub
                        Intent rts=new Intent(Title.this,Rts.class);
                        startActivity(rts);

                    }
                });


    }

    protected void func() {
        // TODO Auto-generated method stub

    }

    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.title, menu);
        return true;
    }



}
4

1 に答える 1