- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我为 Android 计算器应用程序编写了一些代码。我想要的是:-
如果 EditText
字段失去焦点,所有输出字段都应该得到更新,就像在 Excel 工作表中发生的那样,如果我们更新单元格中的任何值,它会更新工作表中所有连接的值。
但是我的代码没有做任何事情。如果我不使用 try
catch
block ,应用程序就会崩溃。它显示代码中有错误,但我无法跟踪它。
如果有更好的方法来做这个钱面额总计计算器,请帮助。
Java 代码是:-
package mahalaxmi.mahalaxmi;
import android.support.v4.app.Fragment;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.Button;
import android.widget.EditText;
import android.widget.TextView;
/**
* Created by SIV on 10-03-2018.
*/
public class Fragment_four extends Fragment {
private static EditText notes2000, notes500, notes200, notes100, notes50, notes20, notes10, notes5, notes2, notes1;
private static TextView value2000, value500, value200, value100, value50, value20, value10, value5, value2, value1;
private static TextView errorText41, quantityTotal, valueTotal;
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
View view = inflater.inflate(R.layout.layout, container, false);
notes2000 = (EditText) view.findViewById(R.id.qty2000);
notes500 = (EditText) view.findViewById(R.id.qty500);
notes200 = (EditText) view.findViewById(R.id.qty200);
notes100 = (EditText) view.findViewById(R.id.qty100);
notes50 = (EditText) view.findViewById(R.id.qty50);
notes20 = (EditText) view.findViewById(R.id.qty20);
notes10 = (EditText) view.findViewById(R.id.qty10);
notes5 = (EditText) view.findViewById(R.id.qty5);
notes2 = (EditText) view.findViewById(R.id.qty2);
notes1 = (EditText) view.findViewById(R.id.qty1);
value2000 = (TextView) view.findViewById(R.id.result2000);
value500 = (TextView) view.findViewById(R.id.result500);
value200 = (TextView) view.findViewById(R.id.result200);
value100 = (TextView) view.findViewById(R.id.result100);
value50 = (TextView) view.findViewById(R.id.result50);
value20 = (TextView) view.findViewById(R.id.result20);
value10 = (TextView) view.findViewById(R.id.result10);
value5 = (TextView) view.findViewById(R.id.result5);
value2 = (TextView) view.findViewById(R.id.result2);
value1 = (TextView) view.findViewById(R.id.result1);
quantityTotal = (TextView) view.findViewById(R.id.qtyTotal);
valueTotal = (TextView) view.findViewById(R.id.resultTotal);
errorText41 = (TextView) view.findViewById(R.id.errorText4);
View.OnFocusChangeListener listener;
listener = new View.OnFocusChangeListener() {
public void onFocusChange(View v, boolean hasFocus) {
short val2000=0, val500=0, val200=0, val100=0, val50=0, val20=0, val10=0, val5=0, val2=0, val1=0;
int totalQty, totalValue;
int tval2000=0, tval500=0, tval200=0, tval100=0, tval50=0, tval20=0, tval10=0, tval5=0, tval2=0, tval1=0;
if(!hasFocus){
try {
//extracting the entered values from EditText field
val2000 = Short.parseShort(value2000.getText().toString());
val500 = Short.parseShort(value500.getText().toString());
val200 = Short.parseShort(value200.getText().toString());
val100 = Short.parseShort(value100.getText().toString());
val50 = Short.parseShort(value50.getText().toString());
val20 = Short.parseShort(value20.getText().toString());
val10 = Short.parseShort(value10.getText().toString());
val5 = Short.parseShort(value5.getText().toString());
val2 = Short.parseShort(value2.getText().toString());
val1 = Short.parseShort(value1.getText().toString());
//calculating the output values
tval2000 = value(notes2000, val2000);
tval500 = value(notes500, val500);
tval200 = value(notes200, val200);
tval100 = value(notes100, val100);
tval50 = value(notes50, val50);
tval20 = value(notes20, val20);
tval10 = value(notes10, val10);
tval5 = value(notes5, val5);
tval2 = value(notes2, val2);
tval1 = value(notes1, val1);
//setting the output value
value2000.setText(tval2000 + "");
value500.setText(tval500 + "");
value200.setText(tval200 + "");
value100.setText(tval100 + "");
value50.setText(tval50 + "");
value20.setText(tval20 + "");
value10.setText(tval10 + "");
value5.setText(tval5 + "");
value2.setText(tval2 + "");
value1.setText(tval1 + "");
totalQty = val2000 + val500 + val200 + val100 + val50 + val20 + val10 + val5 + val2 + val1;
totalValue = tval2000 + tval500 + tval200 + tval100 + tval50 + tval20 + tval10 + tval5 + tval2 + tval1;
quantityTotal.setText(totalQty + "");
valueTotal.setText(totalValue + "");
}
catch (Exception e){};
}
}
};
notes2000.setOnFocusChangeListener(listener);
notes500.setOnFocusChangeListener(listener);
notes200.setOnFocusChangeListener(listener);
notes100.setOnFocusChangeListener(listener);
notes50.setOnFocusChangeListener(listener);
notes20.setOnFocusChangeListener(listener);
notes10.setOnFocusChangeListener(listener);
notes5.setOnFocusChangeListener(listener);
notes2.setOnFocusChangeListener(listener);
notes1.setOnFocusChangeListener(listener);
return view;
}
private void clearQty(EditText e) {
e.setText("");
}
private int value(int e, int s) {
return e * s;
}
}
布局文件是:-
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/linearLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:layout_editor_absoluteY="81dp">
<TableLayout
android:layout_width="351dp"
android:layout_height="506dp"
android:layout_marginStart="16dp"
android:layout_marginTop="8dp"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent">
<TableRow
android:layout_width="match_parent"
android:layout_height="50dp">
<TextView
android:id="@+id/lableDenom"
android:layout_width="wrap_content"
android:layout_height="35dp"
android:background="@color/colorPrimaryDark"
android:text="Denom"
android:textColor="@android:color/background_light"
android:textSize="25dp"
android:textStyle="bold"
tools:layout_editor_absoluteX="16dp"
tools:layout_editor_absoluteY="14dp" />
<TextView
android:id="@+id/lableQty"
android:layout_width="wrap_content"
android:layout_height="35dp"
android:background="@color/colorPrimaryDark"
android:paddingLeft="10dp"
android:text="Qty"
android:textAllCaps="false"
android:textColor="@android:color/background_light"
android:textSize="25dp"
android:textStyle="bold|italic"
tools:layout_editor_absoluteX="16dp"
tools:layout_editor_absoluteY="14dp" />
<TextView
android:id="@+id/lableValue"
android:layout_width="184dp"
android:layout_height="35dp"
android:background="@color/colorPrimaryDark"
android:text="Value"
android:textColor="@android:color/background_light"
android:textSize="25dp"
android:textStyle="bold"
tools:layout_editor_absoluteX="16dp"
tools:layout_editor_absoluteY="14dp" />
</TableRow>
<TableRow
android:layout_width="match_parent"
android:layout_height="50dp">
<TextView
android:id="@+id/lable2000"
android:layout_width="67dp"
android:layout_height="35dp"
android:background="@color/Rs_2000"
android:paddingLeft="5dp"
android:text="2000"
android:textColor="@android:color/background_light"
android:textSize="25dp"
android:textStyle="bold"
tools:layout_editor_absoluteX="16dp"
tools:layout_editor_absoluteY="14dp" />
<EditText
android:id="@+id/qty2000"
android:layout_width="100dp"
android:layout_height="40dp"
android:ems="10"
android:inputType="number"
android:maxLength="4"
android:textColor="@android:color/holo_blue_dark"
android:textSize="25dp"
android:textStyle="bold" />
<TextView
android:id="@+id/result2000"
android:layout_width="184dp"
android:layout_height="35dp"
android:background="@color/Rs_2000"
android:textColor="@android:color/background_light"
android:textSize="25dp"
android:textStyle="bold"
tools:layout_editor_absoluteX="16dp"
tools:layout_editor_absoluteY="14dp" />
</TableRow>
....
and so on
....
<TableRow
android:layout_width="match_parent"
android:layout_height="50dp">
<TextView
android:id="@+id/lableTotal"
android:layout_width="67dp"
android:layout_height="35dp"
android:layout_marginTop="5dp"
android:background="@color/colorPrimaryDark"
android:paddingLeft="5dp"
android:text="Total"
android:textColor="@android:color/background_light"
android:textSize="25dp"
android:textStyle="bold"
tools:layout_editor_absoluteX="16dp"
tools:layout_editor_absoluteY="14dp" />
<TextView
android:id="@+id/qtyTotal"
android:layout_width="100dp"
android:layout_height="35dp"
android:layout_marginTop="5dp"
android:background="@color/colorPrimaryDark"
android:ems="10"
android:inputType="number"
android:maxLength="4"
android:textColor="@android:color/background_light"
android:textSize="25dp"
android:textStyle="bold" />
<TextView
android:id="@+id/resultTotal"
android:layout_width="184dp"
android:layout_height="35dp"
android:layout_marginTop="5dp"
android:background="@color/colorPrimaryDark"
android:textColor="@android:color/background_light"
android:textSize="25dp"
android:textStyle="bold"
tools:layout_editor_absoluteX="16dp"
tools:layout_editor_absoluteY="14dp" />
</TableRow>
</TableLayout>
<TextView
android:id="@+id/errorText4"
android:layout_width="300dp"
android:layout_height="wrap_content"
tools:layout_editor_absoluteX="42dp"
tools:layout_editor_absoluteY="460dp" />
</android.support.constraint.ConstraintLayout>
最佳答案
您已为所有编辑文本分配相同的监听器 - View.OnFocusChangeListener()。每次单击 EditText 项目时都会触发监听器功能。因此,当第一个项目的焦点发生变化时,将调用监听器并且您正在尝试读取所有 EditText 值并将它们转换为 Short。
在这种情况下,所有其他 EditText 都没有值,这将触发 NumberFormatException。
请看下面的实现,它将给出在多个 View 上实现相同监听器的想法。
int val2000=0, val500=0, val200=0, val100=0, val50=0, val20=0, val10=0, val5=0, val2=0, val1=0;
int totalQty, totalValue;
int tval2000=0, tval500=0, tval200=0, tval100=0, tval50=0, tval20=0, tval10=0, tval5=0, tval2=0,tval1=0;
View.OnFocusChangeListener listener;
listener = new View.OnFocusChangeListener() {
public void onFocusChange(View v, boolean hasFocus) {
if(!hasFocus){
try {
switch(v.getId()) {
case R.id.qty2000:
val2000 = Integer.parseInt(notes2000.getText().toString());
tval2000 = value(2000, val2000);
value2000.setText(tval2000 + "");
break;
case R.id.qty500 :
val500 = Integer.parseInt(notes500.getText().toString());;
tval500 = value(500, val500);
value500.setText(tval500 + "");
break;
case R.id.qty200:
val200 = Integer.parseInt(notes200.getText().toString());
tval200 = value(200, val200);
value200.setText(tval200 + "");
break;
case R.id.qty100:
val100 = Integer.parseInt(notes100.getText().toString());
tval100 = value(100, val100);
value100.setText(tval100 + "");
break;
case R.id.qty50:
val50 = Integer.parseInt(notes50.getText().toString());
tval50 = value(50, val50);
value50.setText(tval50 + "");
break;
case R.id.qty20:
val20 = Integer.parseInt(notes20.getText().toString());
tval20 = value(20, val20);
value20.setText(tval20 + "");
break;
case R.id.qty10:
val2000 = Integer.parseInt(notes10.getText().toString());
tval10 = value(10, val10);
value10.setText(tval10 + "");
break;
case R.id.qty5:
val5 = Integer.parseInt(notes5.getText().toString());
tval5 = value(5, val5);
value5.setText(tval5 + "");
break;
case R.id.qty2:
val2 = Integer.parseInt(notes2.getText().toString());
tval2 = value(2, val2);
value2.setText(tval2 + "");
break;
case R.id.qty1 :
val1 = Integer.parseInt(notes1.getText().toString());
tval1 = value(1, val1);
value1.setText(tval1 + "");
break;
default:
//do the default behaviour.
break;
}
}
catch (Exception e){
e.printStackTrace();
}
finally {
totalQty = val2000 + val500 + val200 + val100 + val50 + val20 + val10 + val5 + val2 + val1;
totalValue = tval2000 + tval500 + tval200 + tval100 + tval50 + tval20 + tval10 + tval5 + tval2 + tval1;
quantityTotal.setText(totalQty + "");
valueTotal.setText(totalValue + "");
}
}
}
};
关于Android onFocusChangeListener 不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49248585/
我在Windows 10中使用一些简单的Powershell代码遇到了这个奇怪的问题,我认为这可能是我做错了,但我不是Powershell的天才。 我有这个: $ix = [System.Net.Dn
var urlsearch = "http://192.168.10.113:8080/collective-intellegence/StoreClicks?userid=" + userId +
我有一个非常奇怪的问题,过去两天一直让我抓狂。 我有一个我试图控制的串行设备(LS 100 光度计)。使用设置了正确参数的终端(白蚁),我可以发送命令(“MES”),然后是定界符(CR LF),然后我
我目前正试图让无需注册的 COM 使用 Excel 作为客户端,使用 .NET dll 作为服务器。目前,我只是试图让概念验证工作,但遇到了麻烦。 显然,当我使用 Excel 时,我不能简单地使用与可
我开发了简单的 REST API - https://github.com/pavelpetrcz/MandaysFigu - 我的问题是在本地主机上,WildFly 16 服务器的应用程序运行正常。
我遇到了奇怪的情况 - 从 Django shell 创建一些 Mongoengine 对象是成功的,但是从 Django View 创建相同的对象看起来成功,但 MongoDB 中没有出现任何数据。
我是 flask 的新手,只编写了一个相当简单的网络应用程序——没有数据库,只是一个航类搜索 API 的前端。一切正常,但为了提高我的技能,我正在尝试使用应用程序工厂和蓝图重构我的代码。让它与 pus
我的谷歌分析 JavaScript 事件在开发者控制台中运行得很好。 但是当从外部 js 文件包含在页面上时,它们根本不起作用。由于某种原因。 例如; 下面的内容将在包含在控制台中时运行。但当包含在单
这是一本名为“Node.js 8 the Right Way”的书中的任务。你可以在下面看到它: 这是我的解决方案: 'use strict'; const zmq = require('zeromq
我正在阅读文本行,并创建其独特单词的列表(在将它们小写之后)。我可以使它与 flatMap 一起工作,但不能使它与 map 的“子”流一起工作。 flatMap 看起来更简洁和“更好”,但为什么 di
我正在编写一些 PowerShell 脚本来进行一些构建自动化。我发现 here echo $? 根据前面的语句返回真或假。我刚刚发现 echo 是 Write-Output 的别名。 写主机 $?
关闭。这个问题不满足Stack Overflow guidelines .它目前不接受答案。 想改善这个问题吗?更新问题,使其成为 on-topic对于堆栈溢出。 4年前关闭。 Improve thi
我将一个工作 View Controller 类从另一个项目复制到一个新项目中。我无法在新项目中加载 View 。在旧项目中我使用了presentModalViewController。在新版本中,我
我对 javascript 很陌生,所以很难看出我哪里出错了。由于某种原因,我的功能无法正常工作。任何帮助,将不胜感激。我尝试在外部 js 文件、头部/主体中使用它们,但似乎没有任何效果。错误要么出在
我正在尝试学习Flutter中的复选框。 问题是,当我想在Scaffold(body :)中使用复选框时,它正在工作。但我想在不同的地方使用它,例如ListView中的项目。 return Cente
我们当前使用的是 sleuth 2.2.3.RELEASE,我们看不到在 http header 中传递的 userId 字段没有传播。下面是我们的代码。 BaggageField REQUEST_I
我有一个组合框,其中包含一个项目,比如“a”。我想调用该组合框的 Action 监听器,仅在手动选择项目“a”完成时才调用。我也尝试过 ItemStateChanged,但它的工作原理与 Action
你能看一下照片吗?现在,一步前我执行了 this.interrupt()。您可以看到 this.isInterrupted() 为 false。我仔细观察——“这个”没有改变。它具有相同的 ID (1
我们当前使用的是 sleuth 2.2.3.RELEASE,我们看不到在 http header 中传递的 userId 字段没有传播。下面是我们的代码。 BaggageField REQUEST_I
我正在尝试在我的网站上设置一个联系表单,当有人点击发送时,就会运行一个作业,并在该作业中向所有管理员用户发送通知。不过,我在失败的工作表中不断收到此错误: Illuminate\Database\El
我是一名优秀的程序员,十分优秀!