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.
我想在文本视图中写入一个值(数字),然后按下按钮将其作为字符串发送。有没有关于我如何做到这一点的基本代码?我的手机必须与蓝牙 CC2540 套件通信。
提前致谢
将整数放入TextView:
TextView
textView.setText("" + intValue);
从 a 获取字符串TextView:
textView.getText().toString();
然后,您需要更具体地说明您希望如何发送它并提出您尝试过的内容。