1

我正在尝试创建的小部件有一个奇怪的问题。该小部件是一个带有 3 个答案选项(按钮)的随机问题。我从互联网上加载问题并且有效。

我混淆了答案,所以答案并不总是在同一个位置。此外,可能有多个正确答案。

public RemoteViews setAnswers(JSONObject questionObj, RemoteViews views) throws JSONException {
    // Get the Answers
    String answerA = questionObj.getString("Ans1");
    String answerB = questionObj.getString("Ans2");
    String answerC = questionObj.getString("Ans3");

    // Get the Answers that is correct (1 = Correct, 0 = Wrong)
    int correctA = Integer.parseInt(questionObj.getString("correct1"));
    int correctB = Integer.parseInt(questionObj.getString("correct2"));
    int correctC = Integer.parseInt(questionObj.getString("correct3"));

    // Get help text for correct or wrong answer (HTML)
    String HTTPcor = questionObj.getString("HTTPcor")+" - Correct";
    String HTTPwro = questionObj.getString("HTTPwro")+" - Wrong";

    // Create the Intent for the answers that is correct
    Intent correctIntent = new Intent(maincontext, AdMain.class);
    correctIntent.putExtra("appWidID", appWidId);
    correctIntent.putExtra("correct", 1); // Answer is correct.
    correctIntent.putExtra("HTTP", HTTPcor); // Help text.
    PendingIntent correctIntentPending = PendingIntent.getActivity(maincontext, 0, correctIntent, PendingIntent.FLAG_UPDATE_CURRENT);

    // Create the Intent for the answers that is wrong
    Intent wrongIntent = new Intent(maincontext, AdMain.class);
    wrongIntent.putExtra("appWidID", appWidId);
    wrongIntent.putExtra("correct", 0); // Answer is wrong.
    wrongIntent.putExtra("HTTP", HTTPwro); // Help text.
    PendingIntent wrongIntentPending = PendingIntent.getActivity(maincontext, 0, wrongIntent, PendingIntent.FLAG_UPDATE_CURRENT);

    // Create a random number between 1 and 6 (6 different ways to mix up 3 buttons)
    Random generator = new Random();
    int mix = generator.nextInt(6) + 1;
    Log.v("JapanWidget", "AnswerMix - "+mix+" - appWidId = "+appWidId);

    // DEBUG Set mix to 1 Until i get the Intent fixed.
    mix = 1;

    // Mix the buttons.
    switch(mix) {
      case 1:
          views.setTextViewText(R.id.Answer1, answerA); // Button 1 answer A
          // If correctA = 1 THEN set correctIntentPending ELSE set wrongIntentPending
          if (correctA == 1) { views.setOnClickPendingIntent(R.id.Answer1, correctIntentPending); } else { views.setOnClickPendingIntent(R.id.Answer1, wrongIntentPending); }
          views.setTextViewText(R.id.Answer2, answerB); // Button 2 answer B
          // If correctB = 1 THEN set correctIntentPending ELSE set wrongIntentPending
          if (correctB == 1) { views.setOnClickPendingIntent(R.id.Answer2, correctIntentPending); } else { views.setOnClickPendingIntent(R.id.Answer2, wrongIntentPending); }
          views.setTextViewText(R.id.Answer3, answerC); // Button 3 answer C
          // If correctB = 1 THEN set correctIntentPending ELSE set wrongIntentPending
          if (correctC == 1) { views.setOnClickPendingIntent(R.id.Answer3, correctIntentPending); } else { views.setOnClickPendingIntent(R.id.Answer3, wrongIntentPending); }
          break;
      default:  
          views.setTextViewText(R.id.Answer1, answerA);
          if (correctA == 1) { views.setOnClickPendingIntent(R.id.Answer1, correctIntentPending); } else { views.setOnClickPendingIntent(R.id.Answer1, wrongIntentPending); }
          views.setTextViewText(R.id.Answer2, answerB);
          if (correctB == 1) { views.setOnClickPendingIntent(R.id.Answer2, correctIntentPending); } else { views.setOnClickPendingIntent(R.id.Answer2, wrongIntentPending); }
          views.setTextViewText(R.id.Answer3, answerC);
          if (correctC == 1) { views.setOnClickPendingIntent(R.id.Answer3, correctIntentPending); } else { views.setOnClickPendingIntent(R.id.Answer3, wrongIntentPending); }
          break;
    }

    return views;
}

问题是,当我从新 Activity 中执行 GetExtra 时,它将始终是在 wrongIntentPending 中设置的额外内容。这里出了点问题。但我确实看到“if (correctA == 1) { } else { }” 工作正常。即使我将其设置为“if (correctA == 1) { } else { }”,我也会从 wrongIntentPending 中获得 Extra。

出了什么问题?或者有没有更好的方法来做到这一点?

4

1 回答 1

3

阅读此页面后,我发现了问题:http: //www.bogdanirimia.ro/android-widget-click-event-multiple-instances/269

工作代码:

// Create the Intent for the answers that is correct
Intent correctIntent = new Intent(maincontext, AdMain.class);
correctIntent.putExtra("appWidID", appWidId);
correctIntent.putExtra("correct", 1); // Answer is correct.
correctIntent.putExtra("HTTP", HTTPcor); // Help text.
PendingIntent correctIntentPending = PendingIntent.getActivity(maincontext, 0, correctIntent, PendingIntent.FLAG_UPDATE_CURRENT);

// Create the Intent for the answers that is wrong
Intent wrongIntent = new Intent(maincontext, AdMain.class);
wrongIntent.putExtra("appWidID", appWidId);
wrongIntent.putExtra("correct", 0); // Answer is wrong.
wrongIntent.putExtra("HTTP", HTTPwro); // Help text.
PendingIntent wrongIntentPending = PendingIntent.getActivity(maincontext, 1, wrongIntent, PendingIntent.FLAG_UPDATE_CURRENT);

在“PendingIntent getActivity (Context context, int requestCode, Intent intent, int flags)”中,我需要设置 2 个不同的 requestCodes。甚至是谷歌开发者页面说它目前没有使用。

  • context:这个 PendingIntent 应该在其中启动活动的上下文。
  • requestCode:发件人的私人请求代码(当前未使用)。
  • 意图:要启动的活动的意图。
  • flags:可以是 FLAG_ONE_SHOT、FLAG_NO_CREATE、FLAG_CANCEL_CURRENT、FLAG_UPDATE_CURRENT 或 Intent.fillIn() 支持的任何标志,以控制在实际发送发生时可以提供的意图的哪些未指定部分。

所以我改变了这一行:

PendingIntent wrongIntentPending = PendingIntent.getActivity(maincontext, 1 , wrongIntent, PendingIntent.FLAG_UPDATE_CURRENT);

现在它可以工作了。

于 2012-05-10T06:57:37.307 回答