我正在尝试将来自 Android 的 Ruby-DRb-Messages 与 Ruboto 一起使用。我遇到了从 Ruboto 访问网络的问题,但没有找到任何示例或文档来解决此问题。
这是我的示例(我使用了 Ruboto QuickStartActivity 并尝试添加我的东西):
require 'ruboto/widget'
require 'ruboto/util/toast'
require 'drb'
ruboto_import_widgets :Button, :LinearLayout, :TextView
class QuickStartActivity
def onCreate(bundle)
super
set_title 'My Title'
self.content_view =
linear_layout :orientation => :vertical do
@text_view = text_view :text => 'Test Buttons', :id => 42,
:layout => {:width => :match_parent},
:gravity => :center, :text_size => 48.0
button :text => 'Press me',
:layout => {:width => 300},
:id => 43, :on_click_listener => proc { butterfly }
end
rescue Exception
puts "Exception creating activity: #{$!}"
puts $!.backtrace.join("\n")
end
private
def butterfly
@text_view.text = 'Button pressed'
toast "trying to send a message"
DRb.start_service
myDRb = DRbObject.new_with_uri("druby://192.168.1.100:9918")
myDRb.myMethod('This string should be processed by myMethod')
end
end
如果我使用两台 Linux 机器(DRb-Server 和 DRb-Client),DRb-stuff 可以通过网络正常工作。但是,如果我尝试上面的代码,logcat 会显示:
D/AndroidRuntime(17415): Shutting down VM
W/dalvikvm(17415): threadid=1: thread exiting with uncaught exception (group=0x2b4ea1f8)
E/AndroidRuntime(17415): FATAL EXCEPTION: main
E/AndroidRuntime(17415): android.os.NetworkOnMainThreadException
E/AndroidRuntime(17415): at android.os.StrictMode$AndroidBlockGuardPolicy.onNetwork(StrictMode.java:1099)
E/AndroidRuntime(17415): at java.net.InetAddress.lookupHostByName(InetAddress.java:391)
我的 Android 清单包括:
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
根据其他帖子(How to fix android.os.NetworkOnMainThreadException?)我读到,这个错误被抛出,因为在 Android 中无法使用主线程中的网络。
但是如何在 Ruboto 端解决这个问题以使 DRb 正常工作?