我正在尝试开发一个Android应用程序,但我有一些问题。我对Java有点了解,但我对XML部分非常满意。我制作了一个图像按钮,当用户点击该按钮时,我想要一个浏览器打开某个URL。有人可以一步一步解释我如何做到这一点吗?
这是从我的main_activity.xml
中获取的按钮代码The key, **one**, has the results: [a,b,c,d,d,e]
The key, **two**, has the results: [a,a,a,b,b,e]
请记住,我不是很擅长Java所以我只会复制并粘贴到我的activitymain.java
答案 0 :(得分:0)
在imgebutton点击列表器
上使用此功能webview=(WebView)findViewById(R.id.webView1);
webview.loadUrl("http://www.google.com");
答案 1 :(得分:0)
你可以使用类似的东西:
//any code
private ImageButton imageButton;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main_activity);
//Only if you will use for something else
imageButton = (ImageButton) findViewById(R.id.donate);
//any code
}
// any code
private void callBrowser(View view) {
String url = "http://www.example.com";
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setData(Uri.parse(url));
startActivity(intent);
}
//any code
在 xml 内添加此属性:
android:onClick="callBrowser"