- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
当我从 TextView 中解析一个空字符串时,如果我已经设置了条件,则它会显示“unknown int””。代码如下。
else if (naqaBoolean) {
int i;
int durasiHaidh = 24;
int tempohSebenar = 0;
for (i = 1; i < 17; i++){
TextView tvStatus = findViewById(getResources().getIdentifier("status" + i, "id", MainActivity.this.getPackageName()));
TextView tvTempoh = findViewById(getResources().getIdentifier("tempoh" + i, "id", MainActivity.this.getPackageName()));
TextView tvMenstruasi = findViewById(getResources().getIdentifier("menstruasi" + i, "id", MainActivity.this.getPackageName()));
int hariIni = 0;
String text = (String.valueOf(tvTempoh.getText()));
if(text == "Seharian"){
hariIni = 24;
} else if (text == "-"){
hariIni = 0;
} else if (text == ""){
hariIni = 0;
} else {
hariIni = Integer.parseInt((String) tvTempoh.getText());
}
tempohSebenar = tempohSebenar + hariIni;
}
Toast.makeText(getApplicationContext(), tempohSebenar, Toast.LENGTH_SHORT).show();
}
最佳答案
一开始你使用:
String text = (String.valueOf(tvTempoh.getText()));
并使用您的 if
进行测试。
然后,在 else
block 中,将 (String) tvTempoh.getText());
解析为 int
。相反,您应该使用 Integet.parseInt(text);
此外,字符串比较不应使用 ==
进行,而应使用 .equals
进行,因为 ==
是引用比较。如果字符串被缓存,有时它会起作用,但你不能确定。
这是因为 String.valueOf()
与强制转换 ((String)
) 不同。
关于java - 将空字符串解析为int,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56254734/
我正在尝试创建一个程序,其中字符串的前三个字符重复给定次数,如下所示: foo('Chocolate', 3) # => 'ChoChoCho' foo('Abc', 3) # => 'AbcAbcA
我有以下字符串: std::string str = "Mode:AAA:val:101:id:A1"; 我想分离一个位于 "val:" 和 ":id" 之间的子字符串,这是我的方法: std::st
DNA 字符串可以是任意长度,包含 5 个字母(A、T、G、C、N)的任意组合。 压缩包含 5 个字母(A、T、G、C、N)的 DNA 字母串的有效方法是什么?不是考虑每个字母表 3 位,我们可以使用
是否有一种使用 levenstein 距离将一个特定字符串与第二个较长字符串中的任何区域进行匹配的好方法? 例子: str1='aaaaa' str2='bbbbbbaabaabbbb' if str
使用 OAuth 并使用以下函数使用我们称为“foo”(实际上是 OAuth token )的字符串加密 key public function encrypt( $text ) { // a
我是一名优秀的程序员,十分优秀!