简体   繁体   English

打开浏览器到 web 页面 Android App

[英]Open browser to web page Android App

Trying to grasp Java and Android would like help with a simple task of opening a users browser after they click a button.试图掌握 Java 和 Android 需要在用户单击按钮后打开用户浏览器的简单任务的帮助。

I have been doing tutorials for the last two days though it might help if I just took a stab at it and got feedback.过去两天我一直在做教程,但如果我只是尝试一下并获得反馈可能会有所帮助。 thanks in advance for any help.提前感谢您的帮助。

main.xml: main.xml:

<AbsoluteLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="@drawable/bgimage2"> 
    >

<Button
android:id="@+id/goButton"
android:layout_width="150px"
android:layout_height="wrap_content"
android:text="@string/start"
android:layout_x="80px"
android:layout_y="21px"
>
</AbsoluteLayout>

GetURL.java:获取URL.java:

package com.patriotsar;

import android.app.Activity;
import android.content.Intent;
import android.view.View.OnClickListener;

String url = "http://www.yahoo.com";
Intent i = new Intent(Intent.ACTION_VIEW);
Uri u = Uri.parse(url);
i.setData(u);


public class patriosar extends Activity {

     private Button goButton;

    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);


        goButton.setOnClickListener(new OnClickListener() {         
            @Override
            public void onClick(View v){
                try {
                      // Start the activity
                      startActivity(i);
                    } catch (ActivityNotFoundException e) {
                      // Raise on activity not found
                      Toast toast = Toast.makeText(context, "Browser not found.", Toast.LENGTH_SHORT);
                    }
                  } 
        });

    }
}

It's close, but a few things are in the wrong place or missing.它很近,但有些东西放错了地方或丢失了。 The below code works -- I tried to make the minimum necessary alterations.下面的代码有效——我试图做最少的必要改动。 You could load both versions into something like WinMerge to see exactly what changed.您可以将两个版本都加载到WinMerge 之类的东西中,以查看到底发生了什么变化。

main.xml: main.xml:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="@drawable/bgimage2"
    >

    <Button
        android:id="@+id/goButton"
        android:layout_width="150px"
        android:layout_height="wrap_content"
        android:text="@string/start"
        android:layout_x="80px"
        android:layout_y="21px"
    ></Button>
</LinearLayout>

GetURL.java:获取URL.java:

import android.app.Activity;
import android.content.ActivityNotFoundException;
import android.content.Context;
import android.content.Intent;
import android.net.Uri;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.Toast;

public class GetURL extends Activity {
    private Button goButton;
    String url = "http://www.yahoo.com";
    Intent i = new Intent(Intent.ACTION_VIEW);
    Uri u = Uri.parse(url);
    Context context = this;

    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);

        goButton = (Button)findViewById(R.id.goButton);
        goButton.setOnClickListener(new OnClickListener() {         
            @Override
            public void onClick(View v){
                try {
                      // Start the activity
                        i.setData(u);
                      startActivity(i);
                    } catch (ActivityNotFoundException e) {
                      // Raise on activity not found
                      Toast.makeText(context, "Browser not found.", Toast.LENGTH_SHORT);
                    }
                  } 
        });
    }
}

(You also need a bgimage2.png file in /res/drawable/ and a start string in /res/values/strings.xml , of course). (当然,您还需要/res/drawable/中的bgimage2.png文件和/res/values/strings.xml中的start字符串)。

To simplify you could do为了简化你可以做

Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(" http://www.yahoo.com ")); Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(" http://www.yahoo.com ")); startActivity(intent);开始活动(意图);

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM