- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我试图从 MainActivity.java
中提取另一个类 converter.java
类中某些特定字符串值的值,但无法显示。没有显示日志。甚至,如果我想从另一个类获取数据 spinnerSelects.java
在某些地方也不再显示。你能帮我么?
MainActivity.java
代码在这里:
package com.gazzali.spinitmeow;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.text.TextUtils;
import android.util.Log;
import android.view.View;
import android.widget.AdapterView;
import android.widget.ArrayAdapter;
import android.widget.Button;
import android.widget.EditText;
import android.widget.Spinner;
import android.widget.TextView;
import android.widget.Toast;
public class MainActivity extends AppCompatActivity implements AdapterView.OnItemSelectedListener, View.OnClickListener{
Spinner spinnerMainChoice;
Spinner spinnerInputChoice;
Spinner spinnerOutputChoice;
EditText getInputValueID;
Double inputValue;
TextView outputValueTextViewFromConverter;
Button buttonConvert;
String selectedMainChoice;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
/* ------------ Main code Starts Here ----------------*/
/* Main conversion Type choice with Spinner (Drop Down menu)*/
spinnerMainChoice = findViewById(R.id.spinnerIDMainChoice);
// [IMPORTANT] Set Spinner Click Listener
spinnerMainChoice.setOnItemSelectedListener(this);
// Create an ArrayAdapter using the string array and a default spinner layout
ArrayAdapter<CharSequence> adapterMainChoice = ArrayAdapter.createFromResource(this,
R.array.MainChoices_array, android.R.layout.simple_spinner_item);
// Specify the layout to use when the list of choices appears
adapterMainChoice.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
// Apply the adapter to the spinner
spinnerMainChoice.setAdapter(adapterMainChoice);
/* Input Conversion type choice with Spinner */
spinnerInputChoice = findViewById(R.id.spinnerIDInputChoice);
/* Output Conversion type choice with Spinner */
spinnerOutputChoice = findViewById(R.id.spinnerIDOutputChoice);
/* for input and output fields */
getInputValueID = findViewById(R.id.editTextIDInputValue);
/* ---- Setting Button Properties -----*/
buttonConvert = findViewById(R.id.buttonIDConvert);
buttonConvert.setOnClickListener(this);
/* --- Setting Output TextView field ----*/
outputValueTextViewFromConverter = findViewById(R.id.textViewIDoutputValueToConverter);
}
@Override
public void onItemSelected(AdapterView<?> parent, View view, int pos, long id) {
// An item was selected. retrieve the selected item
selectedMainChoice = parent.getSelectedItem().toString();
Log.i("Selected", selectedMainChoice);
/* Toast.makeText(MainActivity.this, String.valueOf(inputValue), Toast.LENGTH_SHORT).show();*/
/* Implement object of spinnerSelects class*/
spinnerSelects spinnerSelectsInMain = new spinnerSelects(this, spinnerInputChoice, spinnerOutputChoice);
/* the main EVIL '(context) this' in the 2nd parameter, 5 hours wasted, but I learnt many more */
spinnerSelectsInMain.setInputOutputSpinners(selectedMainChoice);
/* calling test for converter class */
/*testOnConverter();*/
}
@Override
public void onNothingSelected(AdapterView<?> parent) {
// Another interface callback
}
public void testOnConverter(){
converter converterInMain = new converter(selectedMainChoice);
}
@Override
public void onClick(View view)
{
String inputValueString = getInputValueID.getText().toString();
inputValue = Double.parseDouble(inputValueString);
/*Toast.makeText(this, String.valueOf(inputValue), Toast.LENGTH_SHORT).show();*/
converter converterInMain = new converter(selectedMainChoice);
double convertedValue = converterInMain.convert(inputValue);
outputValueTextViewFromConverter.setText(String.valueOf(convertedValue));
}
}
converter.java
代码如下:
package com.gazzali.spinitmeow;
import android.content.Context;
import android.util.Log;
import android.widget.Spinner;
import android.widget.Switch;
import android.widget.Toast;
public class converter {
public String MainChoice, inputChoice, outputChoice;
public converter() {
}
public converter(String selectedMainChoiceFromMain) {
this.MainChoice = selectedMainChoiceFromMain;
/* No Log for Main Choice is Being Shown Here */
Log.i("Main Choice is", MainChoice);
}
public converter(String inputChoiceFromSpinnerSelects, String outputChoiceFromSpinnerSelects){
this.inputChoice = inputChoiceFromSpinnerSelects;
this.outputChoice = outputChoiceFromSpinnerSelects;
/* This Logs Shows But ONLY here */
/* IF I try to show the logs anywhere else in the class, */
/* Either null exception or No Log output */
Log.i("Sub Input Choices are:", inputChoice);
Log.i("Sub Output Choices are:", outputChoice);
}
public double convert(double inputValueForEditTextFieldFromMain)
{
double inputValueInConverter = inputValueForEditTextFieldFromMain;
double outputValueToConverterToMain= 0.00;
/* Here I can't see the Log */
/* Apps Crashes When I press Convert Button*/
Log.i("Sub Input Choices are:", inputChoice);
converterLength converterLengthInConverter = new converterLength();
outputValueToConverterToMain = inputValueInConverter * 22;
/*switch (MainChoice)
{
case "Length":
outputValueToConverterToMain = converterLengthInConverter.convertLength(inputChoice, outputChoice, inputValueInConverter);
break;
}*/
return outputValueToConverterToMain;
}
}
当我按下转换按钮时,应用程序不断崩溃。
定位错误显示:
2019-07-21 16:48:33.406 10979-10979/com.gazzali.spinitmeow E/AndroidRuntime: FATAL EXCEPTION: main
Process: com.gazzali.spinitmeow, PID: 10979
java.lang.NullPointerException: println needs a message
at android.util.Log.println_native(Native Method)
at android.util.Log.i(Log.java:166)
at com.gazzali.spinitmeow.converter.convert(converter.java:46)
at com.gazzali.spinitmeow.MainActivity.onClick(MainActivity.java:104)
更新这是我的 spinnerSelects
类,它将 inputChoice
和 outputChoice
参数传递给 converter
类,但我仍然遇到了那个奇怪的错误。尽管我通过 spinnerSelects
传递的参数设置了 converter
类的构造函数值,但它从未设置它的值,因为我看不到 inputChoice
值在 converter
类内
package com.gazzali.spinitmeow;
import android.content.Context;
import android.view.View;
import android.widget.AdapterView;
import android.widget.ArrayAdapter;
import android.widget.Spinner;
public class spinnerSelects implements AdapterView.OnItemSelectedListener{
public String inputChoice, outputChoice;
public Spinner spinnerInputChoice, spinnerOutputChoice;
public ArrayAdapter<CharSequence> adapterInputChoice, adapterOutputChoice;
private Context contextInSpinnerSelects;
public Context getContextInSpinnerSelects() {
return contextInSpinnerSelects;
}
public spinnerSelects() {
/* Empty Constructor */
}
public spinnerSelects(Context contextFromMain, Spinner spinnerInputChoiceFromMain, Spinner spinnerOutputChoiceFromMain) {
this.spinnerInputChoice = spinnerInputChoiceFromMain;
this.spinnerOutputChoice = spinnerOutputChoiceFromMain;
this.contextInSpinnerSelects = contextFromMain;
}
/**
*
* @param selectedMainChoice String retrieves Main Conversion spinner's type
*/
public void setInputOutputSpinners(String selectedMainChoice) {
switch (selectedMainChoice)
{
case "Length": {
adapterInputChoice = ArrayAdapter.createFromResource(contextInSpinnerSelects,
R.array.LengthChoices_array, android.R.layout.simple_spinner_item);
adapterOutputChoice = ArrayAdapter.createFromResource(contextInSpinnerSelects,
R.array.LengthChoices_array, android.R.layout.simple_spinner_item);
setInputOutputListenerAndDropDownAndAdapter();
}
break;
case "Temperature": {
adapterInputChoice = ArrayAdapter.createFromResource(contextInSpinnerSelects,
R.array.TemperatureChoices_array, android.R.layout.simple_spinner_item);
adapterOutputChoice = ArrayAdapter.createFromResource(contextInSpinnerSelects,
R.array.TemperatureChoices_array, android.R.layout.simple_spinner_item);
setInputOutputListenerAndDropDownAndAdapter();
}
break;
case "Weight": {
adapterInputChoice = ArrayAdapter.createFromResource(contextInSpinnerSelects,
R.array.WeightChoices_array, android.R.layout.simple_spinner_item);
adapterOutputChoice = ArrayAdapter.createFromResource(contextInSpinnerSelects,
R.array.WeightChoices_array, android.R.layout.simple_spinner_item);
setInputOutputListenerAndDropDownAndAdapter();
}
break;
}
}
private void setInputOutputListenerAndDropDownAndAdapter() {
spinnerInputChoice.setOnItemSelectedListener(this);
spinnerOutputChoice.setOnItemSelectedListener(this);
adapterInputChoice.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
spinnerInputChoice.setAdapter(adapterInputChoice);
adapterOutputChoice.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
spinnerOutputChoice.setAdapter(adapterOutputChoice);
}
public Spinner getSpinnerInputChoice() {
return spinnerInputChoice;
}
public Spinner getSpinnerOutputChoice() {
return spinnerOutputChoice;
}
@Override
public void onItemSelected(AdapterView<?> parent, View view, int position, long id) {
inputChoice = spinnerInputChoice.getSelectedItem().toString();
outputChoice = spinnerOutputChoice.getSelectedItem().toString();
converter converterInSpinnerSelects = new converter(inputChoice, outputChoice);
/*converterInSpinnerSelects.setInputOutputChoice(inputChoice, outputChoice);*/
}
@Override
public void onNothingSelected(AdapterView<?> parent) {
}
}
最佳答案
您的问题可能是 inputChoice
从未设置。
您正在创建 converter
的新实例- 具有以下代码的类:
converter converterInMain = new converter(selectedMainChoice);
这将仅在您的 converter
中运行此代码-实例:
public converter(String selectedMainChoiceFromMain) {
this.MainChoice = selectedMainChoiceFromMain;
/* No Log for Main Choice is Being Shown Here */
Log.i("Main Choice is", MainChoice);
}
因此第二个构造函数永远不会执行 public converter(String inputChoiceFromSpinnerSelects, String outputChoiceFromSpinnerSelects){
这意味着你从未设置 inputChoice
也不outputChoice
在你的converter
-实例,这意味着他们留下null
Log.i("Sub Input Choices are:", inputChoice);
因此得到 null
如inputChoice
但我认为这不是问题所在。它应该仍然可以工作,但只是输出 null
进入你的控制台。我记得 Log.i() 的工作原理如下: Log.i(TAG, MESSAGE)
所以你的代码应该是这样的:
Log.i("CONVERTER", "Sub Input Choices are: " + inputChoice);
更新现在,您正在创建 convertor
的新实例在(AdapterView<?> parent, View view, int position, long id) {
converter converterInSpinnerSelects = new converter(inputChoice, outputChoice);
这将不会更新您在onClick(View view)
中创建的转换器实例的值。 -功能。
解决此问题的一种方法可能是简单地将字符串置于静态:
public static String MainChoice, inputChoice, outputChoice;
但是这样就不需要创建 converter
的新实例了每次...所以只需这样做:
@Override
public void onItemSelected(AdapterView<?> parent, View view, int position, long id) {
converter.inputChoice = spinnerInputChoice.getSelectedItem().toString();
converter.outputChoice = spinnerOutputChoice.getSelectedItem().toString();
}
关于java - 无法检索另一个类中的字符串值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57132590/
我通过 spring ioc 编写了一些 Rest 应用程序。但我无法解决这个问题。这是我的异常(exception): org.springframework.beans.factory.BeanC
我对 TestNG、Spring 框架等完全陌生,我正在尝试使用注释 @Value通过 @Configuration 访问配置文件注释。 我在这里想要实现的目标是让控制台从配置文件中写出“hi”,通过
为此工作了几个小时。我完全被难住了。 这是 CS113 的实验室。 如果用户在程序(二进制计算器)结束时选择继续,我们需要使用 goto 语句来到达程序的顶部。 但是,我们还需要释放所有分配的内存。
我正在尝试使用 ffmpeg 库构建一个小的 C 程序。但是我什至无法使用 avformat_open_input() 打开音频文件设置检查错误代码的函数后,我得到以下输出: Error code:
使用 Spring Initializer 创建一个简单的 Spring boot。我只在可用选项下选择 DevTools。 创建项目后,无需对其进行任何更改,即可正常运行程序。 现在,当我尝试在项目
所以我只是在 Mac OS X 中通过 brew 安装了 qt。但是它无法链接它。当我尝试运行 brew link qt 或 brew link --overwrite qt 我得到以下信息: ton
我在提交和 pull 时遇到了问题:在提交的 IDE 中,我看到: warning not all local changes may be shown due to an error: unable
我跑 man gcc | grep "-L" 我明白了 Usage: grep [OPTION]... PATTERN [FILE]... Try `grep --help' for more inf
我有一段代码,旨在接收任何 URL 并将其从网络上撕下来。到目前为止,它运行良好,直到有人给了它这个 URL: http://www.aspensurgical.com/static/images/a
在过去的 5 个小时里,我一直在尝试在我的服务器上设置 WireGuard,但在完成所有设置后,我无法 ping IP 或解析域。 下面是服务器配置 [Interface] Address = 10.
我正在尝试在 GitLab 中 fork 我的一个私有(private)项目,但是当我按下 fork 按钮时,我会收到以下信息: No available namespaces to fork the
我这里遇到了一些问题。我是 node.js 和 Rest API 的新手,但我正在尝试自学。我制作了 REST API,使用 MongoDB 与我的数据库进行通信,我使用 Postman 来测试我的路
下面的代码在控制台中给出以下消息: Uncaught DOMException: Failed to execute 'appendChild' on 'Node': The new child el
我正在尝试调用一个新端点来显示数据,我意识到在上一组有效的数据中,它在数据周围用一对额外的“[]”括号进行控制台,我认为这就是问题是,而新端点不会以我使用数据的方式产生它! 这是 NgFor 失败的原
我正在尝试将我的 Symfony2 应用程序部署到我的 Azure Web 应用程序,但遇到了一些麻烦。 推送到远程时,我在终端中收到以下消息 remote: Updating branch 'mas
Minikube已启动并正在运行,没有任何错误,但是我无法 curl IP。我在这里遵循:https://docs.traefik.io/user-guide/kubernetes/,似乎没有提到关闭
每当我尝试docker组成任何项目时,都会出现以下错误。 我尝试过有和没有sudo 我在这台机器上只有这个问题。我可以在Mac和Amazon WorkSpace上运行相同的容器。 (myslabs)
我正在尝试 pip install stanza 并收到此消息: ERROR: No matching distribution found for torch>=1.3.0 (from stanza
DNS 解析看起来不错,但我无法 ping 我的服务。可能是什么原因? 来自集群中的另一个 Pod: $ ping backend PING backend.default.svc.cluster.l
我正在使用Hibernate 4 + Spring MVC 4当我开始 Apache Tomcat Server 8我收到此错误: Error creating bean with name 'wel
我是一名优秀的程序员,十分优秀!