我的目标是制作一个 android 应用程序,它从 C# 向 logcat 打印“hello world”文本。我在 C# 中考虑这样的事情:
using MyLibrary;
namespace Hello
{
public class HelloWorldClass
{
public HelloWorldClass()
{
MyLibrary.print("hello world");
}
}
}
然后在eclipse项目中:
import Hello;
public class MainActivity extends Activity
{
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
Hello something = new Hello(); // it would print "hello world" to logcat
}
}
我怎样才能创建那个“我的图书馆”?任何相关的链接、参考资料或可以提供帮助的东西?