我正在制作一个联系人应用程序,我添加了一个图像按钮。当用户点击图像按钮时,他/她将被定向到调用应用程序。当我在模拟器上运行代码时,图像按钮不起作用。 以下是我的代码:
public void addListenerOnButton() {
imageButton = (ImageButton) findViewById(R.id.imageButton1);
imageButton.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
Intent intent = new Intent(Intent.ACTION_CALL, Uri.parse("tel:12125551212"));
startActivity(intent);
}
});
}
LogCat显示eglSurfaceAttrib未实现。我哪里弄错了? 任何帮助将不胜感激。感谢你。