imageButtonBrowser
.setOnClickListener(new ImageButton.OnClickListener() {
public void onClick(View v) {
Uri uri = Uri.parse("http://www.baidu");
Intent intent = new Intent(Intent.ACTION_VIEW, uri);
startActivity(intent);
}
});
imageButtonBrowser
.setOnClickListener(new ImageButton.OnClickListener() {
public void onClick(View v) {
Uri uri = Uri.parse("http://www.baidu");
Intent intent = new Intent(Intent.ACTION_VIEW, uri);
startActivity(intent);
}
});