0

我只会在 a 中写入数字EditText并在按下按钮时将其作为字符串发送。我找到了这个基本代码。我可以用这个吗?

public void sendmessageclicked(View view)
{
    try 
    {
        sendData();
    }
    catch (IOException ex) 
    { 
        showMessage("SEND FAILED");
    }   
}


private void sendData() throws IOException 
{
    String msg = ØTextbox.getText().toString();
    msg += "\r\n";          
}
4

1 回答 1

1

我认为您可以使用共享意图。像这样的东西:

Intent sharingIntent = new Intent(Intent.ACTION_SEND);
sharingIntent.setType("text/plain");
sharingIntent.setPackage("com.android.bluetooth");
sharingIntent.putExtra(Intent.EXTRA_TEXT, msg);
startActivity(Intent.createChooser(sharingIntent, "Share text using"));

还可以查看有关蓝牙使用的官方文档。

于 2013-04-26T05:55:33.283 回答