无法弄清楚如何将 String 转换为 char[]
我正在动态创建一个 TextView 并尝试设置存储在字符串中的默认值。我假设我收到错误,因为 setText 接受 char[]。我不知道如何将字符串转换为 char[]
String s = new String("test");
t = new EditText(this);
t.setText(s,0,4);
Ted
I’m creating a TextView dymacally and trying to set a default value that is stored in a string. I’m assuming I get a error because the setText takes in a char[]. I cannot figure out how to convert a string to a char[]
String s = new String("test");
t = new EditText(this);
t.setText(s,0,4);
Ted
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以将字符串转换为字符数组,如下所示:
You can convert the string to a char array like this:
只需调用
setText
并向其传递字符串即可。Just call
setText
and pass it the String.