我在 XML 中创建了一些按钮,并且我有将 onClick 打开 URL 的方法。如何将此方法链接到我的按钮,以便在点击/onClick 时调用该方法。
下面是方法代码:
public void openResource() {
Uri uri = Uri.parse("http://librarywales.org");
Intent intent = new Intent(Intent.ACTION_VIEW, uri);
startActivity(intent);
}
我在 onCreate 方法中创建了我的 XML Button 的一个实例:
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Button libButton = (Button) findViewById(R.id.button1);
}
如何将该方法添加到 libButton 实例?
我现在已经在 'vins' 的帮助下解决了上述问题,但是当我在 AVD 上运行此应用程序并单击一个按钮时,它会弹出一个 android 消息框。“不幸的是,ApplicationName 已停止工作。”
有谁知道这是为什么?
谢谢,丹