我想Button
在 Android 应用程序中单击时将用户重定向到特定的 URL。
问问题
33906 次
1 回答
32
您可以启动一个“查看”活动,它是给定 URL 的浏览器:
public class HelloWorld extends Activity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
// Assuming you are using xml layout
Button button = (Button)findViewById(R.id.Button01);
button.setOnClickListener(new OnClickListener() {
public void onClick(View arg0) {
Intent viewIntent =
new Intent("android.intent.action.VIEW",
Uri.parse("http://www.stackoverflow.com/"));
startActivity(viewIntent);
}
});
}
}
于 2010-02-10T11:54:17.260 回答