我是Eclipse and android app的新手。
我想要一款简单的应用来安卓手机。 用户启动此应用程序,将直接重定向到我的主页www.mypage.com
有人可以帮帮我吗?我尝试使用Eclipse来制作它..
答案 0 :(得分:0)
创建一个新的Android项目。 File New Android Application Project选择默认值,然后在MainActivity类中:@Override protected void onCreate(Bundle savedInstanceState){ super.onCreate(savedInstanceState); 的setContentView(R.layout.activity_main);
if (savedInstanceState == null) {
getSupportFragmentManager().beginTransaction()
.add(R.id.container, new PlaceholderFragment()).commit();
}
// add these two lines
Intent browserIntent = new Intent(Intent.ACTION_VIEW,Uri.parse(“http://www.mypage.com”)); startActivity(browserIntent); }