我必须将包名称发送到其他应用程序。这是成功完成的。但是当我在编辑文本中编写包时。编辑文本区分大小写。那么我该如何删除呢?是否有任何选项可以在 main.xml 中进行更改,或者我必须以编程方式进行。请建议。
问问题
1552 次
4 回答
0
.toLowerCase()
发送前如何String
?
于 2012-07-23T10:12:37.150 回答
0
String txt = editText.getText().toString().toLowerCase();
现在在任何你想要的地方使用txt ...
于 2012-07-23T10:12:51.630 回答
0
检查包名的地方是某某,使用
String textEntered=editText.getText().toString();
if(textEntered.equalsIgnoreCase("package name"))
{
//proceed the code
}
于 2012-07-23T10:20:24.977 回答
0
好吧,如果您想以小写形式发送包名称,请使用
yourString.toLowerCase();
发送前
添加阅读您上面的评论后。我认为您正在比较包名称,在这种情况下。采用
onePackagename.equalsIgnoreCase(anotherPackageName);
于 2012-07-23T10:26:15.457 回答