1、首先在一个布局文件(.XML)中绘画了一个跳转按钮(id为btn1):
<Button
android:id="@+id/btn1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="点击跳转" />
2、然后在关联的类中声明一个私有button名称,如:
private Button btn1
TIPS:在类上会添加:import android.widget.Button
3、接着在类中onCreate的方法内执行以下 *** 作:
(1)、给btn1赋值,即设置布局文件中的Button按钮id进行关联,如:
btn1 = (Button) findViewById(R.id.btn1)
(2)、给btn1绑定点击事件:
btn1.setOnClickListener(new View.OnClickListener(){
@Override
public void onClick(View v){
}
})
TIPS:在类上会添加:import android.view.View
(3)、 给bnt1添加点击响应事件:
btn1.setOnClickListener(new View.OnClickListener(){
@Override
public void onClick(View v){
//Intent是一种运行时绑定(run-time binding)机制,它能在程序运行过程中连接两个不同的组件。
//page1为先前已添加的类,并已在AndroidManifest.xml内添加活动事件(<activity android:name="page1"></activity>),在存放资源代码的文件夹下下,
Intent i = new Intent(MainActivity.this , page1.class)
////启动
startActivity(i)
}
})
TIPS:在类上会添加:import android.content.Intent
4、最后,就可以就可以跳转到下一个页面了。
举例:有两个activity FirstActivity、SecondActivity
跳转实现方法:
1、第一种(带传参):
2、第二种:
3、第三种 com.example.yuan.e06_gridview是你的包名:
4、第四种 com.example.yuan.e06_gridview是你的包名:
5、第五种 com.yuan是你的文件夹路径:
一、启动android默认浏览器
在Android程序中我们可以通过发送隐式Intent来启动系统默认的浏览器。如果手机本身安装了多个浏览器而又没有设置默认浏览器的话,系统将让用户选择使用哪个浏览器来打开连接。关于Intent的更多内容请参考《常用Intent》
示例1
Intent intent =newIntent()
intent.setAction("android.intent.action.VIEW")
Uri content_url =Uri.parse("http://www.163.com")
intent.setData(content_url)
startActivity(intent)
这样子,android就可以调用起手机默认的浏览器访问。
二、启动指定浏览器
在Android程序中我们可以通过发送显式Intent来启动指定的浏览器。
启动Android原生浏览器
示例2
Intent intent =newIntent()
intent.setAction("android.intent.action.VIEW")
Uri content_url =Uri.parse("http://www.163.com")
intent.setData(content_url)
intent.setClassName("com.android.browser","com.android.browser.BrowserActivity")
startActivity(intent)
只要修改以intent.setClassName("com.android.browser","com.android.browser.BrowserActivity")
中相应的应用程序packagename 和要启动的activity即可启动其他浏览器来
uc浏览器":"com.uc.browser", "com.uc.browser.ActivityUpdate“
opera浏览器:"com.opera.mini.android", "com.opera.mini.android.Browser"
qq浏览器:"com.tencent.mtt", "com.tencent.mtt.MainActivity"
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)