这是一个我已经拥有的简单应用程序,我想要通过浏览器启动特定URL的按钮.你能不能给我一些信息来实现这一目标,就像我说我已经有了按钮已经进入我的应用程序.这是代码 – 知道你是否需要其他任何东西
.java文件
package reseeveBeta.mpi.dcasey;import androID.app.Activity;import androID.os.Bundle;public class ReseeveBetaActivity extends Activity {/** Called when the activity is first created. */@OverrIDepublic voID onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentVIEw(R.layout.main); } }
.XML
<?xml version="1.0" enCoding="utf-8"?><linearLayout xmlns:androID="http://schemas.androID.com/apk/res/androID"androID:layout_wIDth="fill_parent"androID:layout_height="fill_parent"androID:orIEntation="vertical" ><TextVIEw androID:layout_wIDth="fill_parent" androID:layout_height="wrap_content" androID:text="Welcome to Reseeve, tap register to begin account creation" /><button androID:ID="@+ID/button1" androID:layout_wIDth="match_parent" androID:layout_height="wrap_content" androID:text="Register" /><EditText androID:ID="@+ID/editText1" androID:layout_wIDth="match_parent" androID:layout_height="wrap_content" androID:ems="10" androID:inputType="textMultiline" androID:text="If you already have and account, please login below" > <requestFocus /></EditText></linearLayout>
解决方法:
此行应使用指定的URL打开您的内置浏览器:
startActivity(new Intent(Intent.ACTION_VIEW).setData(Uri.parse("http://www.Google.com")));
您的活动应该包含以下部分:
//define class variables herebutton btn;protected voID onCreate(Bundle savedInstanceState){ //some code of yours btn=(button)findVIEwByID(R.ID.button1); btn.setonClickListener(this); //more code of yours}//whatever else you have in your source codepublic voID onClick(VIEw v){ //handle the click events here, in this case open www.Google.com with the default browser startActivity(new Intent(Intent.ACTION_VIEW).setData(Uri.parse("http://www.Google.com")));}
它可能不是100%准确的语法,因为我只是自己写这个,但你明白了.
总结以上是内存溢出为你收集整理的android – 让按钮打开浏览器到特定URL的最简单方法全部内容,希望文章能够帮你解决android – 让按钮打开浏览器到特定URL的最简单方法所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)