- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我目前正在 Android Studio 中制作一个标记测验应用程序,我想添加一个功能,每个正确答案给你 1 分,错误答案给你 0 分。(按提示按钮或跳过按钮也会给你0)。最后,您可以按一个名为“获取我的分数”的按钮,其中会给出最终分数。
我的问题是,即使我提交正确的答案,我的分数也是 0,而当我提交错误的答案时,有时我的分数是正数......也就是出了问题。我是否遗漏了一些代码,或者我只是以错误的方式完成了此操作?
更新
成功了!正确的代码如下。
首先,这是主要 Activity ,包含所有 fragment (标志)的代码:
Play.java
public class Play extends MainActivity {
private int total = 0;
public void updateScore(int add){
total += add;
}
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_play);
final String myScore = String.valueOf(total);
final ImageButton imageBtn10 = (ImageButton) findViewById(R.id.imageButton10);
final ImageButton imageBtn9 = (ImageButton) findViewById(R.id.imageButton9);
final ImageButton imageBtn8 = (ImageButton) findViewById(R.id.imageButton8);
final ImageButton imageBtn7 = (ImageButton) findViewById(R.id.imageButton7);
final ImageButton imageBtn6 = (ImageButton) findViewById(R.id.imageButton6);
final ImageButton imageBtn5 = (ImageButton) findViewById(R.id.imageButton5);
final ImageButton imageBtn4 = (ImageButton) findViewById(R.id.imageButton4);
final ImageButton imageBtn3 = (ImageButton) findViewById(R.id.imageButton3);
final Button button_score = (Button)findViewById(R.id.scoreButton);
FragmentManager fragMan = getFragmentManager();
FragmentTransaction fragTrans = fragMan.beginTransaction();
FragmentDefault fd = new FragmentDefault();
fragTrans.replace(R.id.fragment_place, fd);
fragTrans.commit();
fragTrans.hide(new FragmentOne());
fragTrans.hide(new FragmentTwo());
fragTrans.hide(new FragmentThree());
button_score.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Bundle bundle = new Bundle();
bundle.putString("yes", String.valueOf(total));
Intent intent= new Intent(Play.this, FinalActivity.class);
intent.putExtras(bundle);
startActivity(intent);
}
});
imageBtn10.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
FragmentManager fragMan = getFragmentManager();
FragmentTransaction fragTrans = fragMan.beginTransaction();
fragTrans.replace(R.id.fragment_place, new FragmentOne());
fragTrans.commit();
//imageBtn10.setEnabled(false);
}
});
imageBtn9.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
FragmentManager fragMan = getFragmentManager();
FragmentTransaction fragTrans = fragMan.beginTransaction();
fragTrans.replace(R.id.fragment_place, new FragmentTwo());
fragTrans.commit();
}
});
imageBtn8.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
FragmentManager fragMan = getFragmentManager();
FragmentTransaction fragTrans = fragMan.beginTransaction();
fragTrans.replace(R.id.fragment_place, new FragmentThree());
fragTrans.commit();
}
});
imageBtn7.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
FragmentManager fragMan = getFragmentManager();
FragmentTransaction fragTrans = fragMan.beginTransaction();
fragTrans.replace(R.id.fragment_place, new FragmentThree());
fragTrans.commit();
}
});
imageBtn6.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
FragmentManager fragMan = getFragmentManager();
FragmentTransaction fragTrans = fragMan.beginTransaction();
fragTrans.replace(R.id.fragment_place, new FragmentThree());
fragTrans.commit();
}
});
imageBtn5.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
FragmentManager fragMan = getFragmentManager();
FragmentTransaction fragTrans = fragMan.beginTransaction();
fragTrans.replace(R.id.fragment_place, new FragmentThree());
fragTrans.commit();
}
});
imageBtn4.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
FragmentManager fragMan = getFragmentManager();
FragmentTransaction fragTrans = fragMan.beginTransaction();
fragTrans.replace(R.id.fragment_place, new FragmentThree());
fragTrans.commit();
}
});
imageBtn3.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
FragmentManager fragMan = getFragmentManager();
FragmentTransaction fragTrans = fragMan.beginTransaction();
fragTrans.replace(R.id.fragment_place, new FragmentThree());
fragTrans.commit();
}
});
}
}
第一个标志( fragment )的代码:
FragmentOne.java
public class FragmentOne extends Fragment {
private EditText userAnswer;
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
// Inflate the layout for this fragment
View v = inflater.inflate(R.layout.fragment_fragment_one, null);
userAnswer = (EditText)v.findViewById(R.id.editText);
final TextView tv = (TextView)v.findViewById(R.id.showCorrect);
final TextView hintv = (TextView)v.findViewById(R.id.textHint);
final Button submit = (Button)v.findViewById(R.id.submitBtn1);
submit.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
String theAnswer = (userAnswer.getText().toString());
if (theAnswer.equalsIgnoreCase("Germany")) {
((Play) getActivity()).updateScore(1);
tv.setText("Correct!");
}
else {
tv.setText("Wrong");
}
submit.setEnabled(false);
// updateScore();
}
});
final Button skip = (Button)v.findViewById(R.id.skipBtn);
skip.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
submit.setEnabled(false);
}
});
final Button hint = (Button)v.findViewById(R.id.hintBtn);
hint.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
hintv.setText("The capital is Berlin \n The country is in Europe \n It starts with G... ");
}
});
return v;}
}
这是其中一个问题的代码。因此,您可以单击国旗并写下属于哪个国家/地区。每个标志都是一个 fragment 。
由于这一行,我在上面的代码中收到错误:((播放) getActivity()).updateScore(1);Play 颜色为红色,并显示“无法解析符号“Play””。
这是当您按下“获取我的分数”按钮时的代码:
FinalActivity.java
public class FinalActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_final);
Bundle bundle = getIntent().getExtras();
final String yes_sir = bundle.getString("yes"); //yes_sir has to be the total score added up.
final TextView tv2 = (TextView)findViewById(R.id.textView5);
final Button submit = (Button)findViewById(R.id.button4);
submit.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
tv2.setText("Score is " + yes_sir);
}
});
}
}
我是一个完全的编程初学者,所以详细的解释会非常有帮助!
最佳答案
您可以使用“yes”键从 bundle 中获取分数:
final String yes_sir = bundle.getString("yes");
我猜你的分数应该是“a”,因为当答案正确时,你的分数会增加。您没有向我们展示代码,您可以在其中将 View 更改为分数 View (创建新的 Activity ),也可以在其中将分数添加到 bundle 中。您应该将分数添加到 fragment 类中的 bundle 中,如下所示:
bundle.putString("yes", String.valueOf(a));
您可以使用 Android Bundles 将数据提供给新的 Activity。为此,您可以将数据放入 Bundle 中,并将其提供给新 Activity 的 onCreate。在那里您可以取回数据。您的问题是,您尝试从 Bundle 中获取数据,但从未向其中添加数据。
为了帮助您了解更详细的信息,查看代码会很有用,您可以在其中创建显示分数的 Activity 。
您需要使用 Intent 将该 Bundle 提供给您的新 Activity。
当你想启动 FinalActivity 时,你应该这样做:
Intent intent= new Intent(this, FinalActivity.class);
intent.putExtras(bundle);
startActivity(intent);
要在 Fragments 及其 Activity 之间进行通信,最简单(但不是最好)的方法如下:
((Play) getActivity()).updateScore(1);
在您的 fragment 中执行此操作,而不是公共(public)静态 int。所以而不是你的“a++;”你写上面的行。
在您的 Play 类中,您必须添加以下功能:
public void updateScore(int add){
total += add;
}
你应该改变:
final int total = (0 + FragmentOne.a + FragmentTwo.b);
致: 私有(private) int 总数 = 0;
并将其从 onCreate() 函数移动到类中。
而不是:
bundle.putString("yes", myScore);
您现在可以执行以下操作:
bundle.putString("yes", String.valueOf(total));
注意:出现您的问题是因为您的分数在您创建 Play Activity 时初始化过一次。这意味着,当您第一次初始化它时,总计将设置为 0。当您现在正确回答问题时,总计不会更新,因为它仅在您初始化 Activity 时设置。当您按下“分数”按钮时,它仍然是 0。当您现在切换回“游戏 Activity ”时,总数会再次初始化并变为 1(如果您之前回答正确)。
关于java - Android Studio 带有分数的测验应用程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41519918/
我经常使用 SSMS 查询数据和构建数据集,我的 IT 部门负责数据库管理。 最近我发现了 Azure Data Studio,我喜欢: 智能感知 源代码控制(例如使用 Git) 来自社区的扩展 SQ
我想根据我使用的 visual studio 版本编译不同的东西,比如 #if VISUAL_STUDIO_VERSION > 2015 eventH?.Invoke(this, EventArgs.
我们的开发团队计划从 visual studio 2005 升级到 visual studio 2010 -- 跳过 visual studio 2008。 大部分项目是VB ASP.NET项目,使用
我的Visual Studio 2015无法构建2010平台工具集。它说: The build tools for Visual Studio 2010 (v100) cannot be found.
我目前正在使用 Visual Studio 2015 来编程 ASP.NET Core 应用程序。我对安装 Visual Studio 2017 有以下疑问: 什么被认为是最佳实践和/或最干净的方法?
尝试从扩展和更新获取 Visual Studio 扩展时,出现以下错误:- 向 visualstudiogallery.msdn.microsoft.com/Services/VStudio/Exte
这个问题在这里已经有了答案: Can Visual Studio Code and VS 2012 be installed on same computer? (1 个回答) 关闭去年。 在安装了
作为标准安装的一部分,Visual Studio Code 带有一个名为“Monokai Dimmed”的颜色主题。 有没有办法将它移植到 Visual Studio 2015?我检查了社区主题( h
我想开始编程 CUDA。 我已经安装了 Visual Studio 2010 Express。 我还安装了 nVidia nSight Visual Studio。 而且我具备所有常见的先决条件(Ne
Visual Studio Community Edition是否可以使用Visual Studio Online帐户上的存储库? 我一直为包含在Online帐户中的Visual Studio Onl
我有一个我一直在开发的应用程序,但在 android studio 上遇到了问题。当我点击“build->run”然后选择我的设备时,应用程序永远不会在我的手机上运行(并且自动出现的android-s
我正在使用Visual Studio2010。我面临的一个问题是,当我创建一个新的Web项目时,Visual Studio将创建该项目,并且不会在解决方案资源管理器中显示其解决方案。 另一件事是,我想
我通读了这里的许多帖子,却找不到一个有效的明确答案。因此,在花了一些时间使它生效之后,我认为应该发布它。 问题:发布配置文件将建立在服务器上,但不会发布。 解: 确保已安装Microsoft Wind
我正在尝试使用Visual Studio 2012构建针对.NET 3.5的C++ CLI应用程序。 通过安装Visual Studio 2008,并指定v90平台工具集,我已经在一台机器上进行了这项
我在 Microsoft Visual Studios 2013 中有一个项目,我想在 Microsoft Visual Studios 2010 中打开它。有什么简单的方法吗?还是我必须在2010年
我想知道,如果我发送一个解决方案文件夹(它是用 visual studio C# 编写的),您可以在 visual studio for mac 中打开解决方案吗? 在visual studio 20
有没有办法在 Visual Studio Code 和 Visual Studio 中设置相同的快捷方式(而不必每次都手动更改它们)? 例如,我在 Visual Studio Code 中经常使用 A
我刚开始了解 Visual Studio Code。我想知道,我可以将 Visual Studio 替换为所有 .NET 开发相关的工作吗? 我可以节省 Visual Studio 许可的成本吗? V
我安装了具有有效许可证(Visual Studio 订阅)的 Visual Studio 2019 企业版(VS 2019 16.1.4),它运行良好。 突然之间,当我尝试打开项目或项目中的任何文件时
我一直在使用 Compass 编译 Windows 环境中的 sass 文件,无论是在命令行上还是使用 Compass-app 来查看目录。 我刚刚开始使用 Visual Studio(专业版 201
我是一名优秀的程序员,十分优秀!