无法弄清楚如何将 String 转换为 char[]

发布于 2024-11-04 04:11:18 字数 206 浏览 0 评论 0原文

我正在动态创建一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

香橙ぽ 2024-11-11 04:11:18

您可以将字符串转换为字符数组,如下所示:

char [] result = s.toCharArray();

You can convert the string to a char array like this:

char [] result = s.toCharArray();
别闹i 2024-11-11 04:11:18

只需调用 setText 并向其传递字符串即可。

String string = new String("test");
  text = new EditText(this); 
  text.setText(string);

Just call setText and pass it the String.

String string = new String("test");
  text = new EditText(this); 
  text.setText(string);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文