我正在动态创建TextView并尝试设置存储在字符串中的默认值。我假设我得到一个错误,因为setText接受char []。我无法弄清楚如何将字符串转换为char []
String s = new String("test");
t = new EditText(this);
t.setText(s,0,4);
泰德
答案 0 :(得分:1)
您可以将字符串转换为char数组,如下所示:
char [] result = s.toCharArray();
答案 1 :(得分:1)
只需致电setText
并传递字符串。
String string = new String("test");
text = new EditText(this);
text.setText(string);