我想比较两个字符串,我不知道如何使它工作或用Google搜索。 如果比较相等,我想用内容覆盖空的接收字符串。 输出2提供“测试”,但比较不起作用,因此输出1保持为空。
String recept = "";
String colourname = match.getName() ;
String comparison = "test" ;
if (comparison.equals(colourname)) {
recept = "mycontent";
}
((TextView) (view.findViewById(R.id.output_a))).setText(recept); //Output 1
((TextView) (view.findViewById(R.id.output_b))).setText(colourname); //Output 2
我希望输出1中有“ mycontent”,但它是“”。