Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试将 TextView 转换为字符串,但我不确定我是否以正确的方式进行操作,下面是我认为可以工作的代码,但我不断收到错误。
TextView test1 = (TextView)findViewById(R.id.result1); String testA = test1.getText().toString();
这是执行此操作的正确方法还是有其他方法?任何帮助,将不胜感激。
你的代码是正确的。请注意,它只会onCreate在被调用并且您的contentView设置已设置后才起作用。
onCreate
contentView