文本视图if语句不起作用

时间:2013-09-11 19:09:45

标签: java android eclipse android-mediaplayer

任何人都可以帮我解决我在这里出错的地方。在按钮上单击媒体播放器随机播放其中一个mfiles,我正在尝试根据播放的文件设置textview。目前,setText if语句仅匹配播放一半时间的音频。真的不确定我在哪里出错了。

private final int SOUND_CLIPS = 3;
private int mfile[] = new int[SOUND_CLIPS];
private Random rnd = new Random();

MediaPlayer mpButtonOne;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    mfile[0] = R.raw.one;  
    mfile[1] = R.raw.two;  
    mfile[2] = R.raw.three; 

    //Button setup
    Button bOne = (Button) findViewById(R.id.button1);
    bOne.setOnClickListener(new View.OnClickListener() {

        @Override
        public void onClick(View v) {

            final TextView textOne = (TextView)findViewById(R.id.textView1);
                        mpButtonOne = MediaPlayer.create(MainActivity.this, mfile[rnd.nextInt(SOUND_CLIPS)]);
             if (mpButtonOne==null){
                    //display a Toast message here

                    return;
             }


             mpButtonOne.start();
             if (mfile[rnd.nextInt(SOUND_CLIPS)] == mfile[0]){
                 textOne.setText("one");
             }
             if (mfile[rnd.nextInt(SOUND_CLIPS)] == mfile[1]){
                 textOne.setText("two");
             }               
             if (mfile[rnd.nextInt(SOUND_CLIPS)] == mfile[2]){
                 textOne.setText("three");
             }
                mpButtonOne.setOnCompletionListener(new soundListener1());
                {
                }

所以只是为了澄清我遇到的问题是setText只偶尔匹配音频,而不是每次点击都匹配。其余时间它会显示错误音频的错误文本。

1 个答案:

答案 0 :(得分:1)

您正在选择其他随机文件

mfile[rnd.nextInt(SOUND_CLIPS)]

将其设置为onClick()中的变量,然后检查if语句中的该变量

 public void onClick(View v) {

    int song = mfile[rnd.nextInt(SOUND_CLIPS)];
    final TextView textOne = (TextView)findViewById(R.id.textView1);
    mpButtonOne = MediaPlayer.create(MainActivity.this, song);


    if (song == mfile[0]){
        textOne.setText("one");
    }

修改

要使它成为成员变量,以便您可以在类中的任何位置使用它,只需在方法之外声明它。通常在onCreate()之前执行此操作,以便所有成员变量位于同一位置,这使您的代码更易读/可管理。

public class SomeClass extends Activity
{
    int song;

    public void onCreate()
    {
        // your code
    }

然后您可以在onClick()

中初始化它
 public void onClick(View v) {

     song = mfile[rnd.nextInt(SOUND_CLIPS)];
     final TextView textOne = (TextView)findViewById(R.id.textView1);
     mpButtonOne = MediaPlayer.create(MainActivity.this, song);