我正在开发一个使用NearbyConnection API的react-native应用程序。我不希望连接被自动接受。用户应该能够接受或拒绝连接。我尝试了Google建议的代码(代码如下)
new AlertDialog.Builder(context)
.setTitle("Accept connection to " + info.getEndpointName())
.setMessage("Confirm the code matches on both devices: " + info.getAuthenticationDigits())
.setPositiveButton(
"Accept",
(DialogInterface dialog, int which) ->
// The user confirmed, so we can accept the connection.
Nearby.getConnectionsClient(context)
.acceptConnection(endpointId, payloadCallback))
.setNegativeButton(
"Refuse",
(DialogInterface dialog, int which) ->
// The user canceled, so we should reject the connection.
Nearby.getConnectionsClient(context).rejectConnection(endpointId))
.setIcon(android.R.drawable.ic_dialog_alert)
.show();
但是它不工作(应用程序在这个级别崩溃)。有没有办法重写这个代码以兼容reat-native?或者有没有可能在Java中执行一个JS函数并获得结果?
1条答案
按热度按时间t9aqgxwy1#
你可以通过下面的操作在react-native中获得跨平台的本地警报。