简体   繁体   中英

Application crashes on clicking a link in TextView

I am working on an application called Android Glossary. In my second activity I have created a TextView which has a link embedded in it. Everything seems fine; the link is highlighted in blue. The problem is that when I click on the link, my application crashes down. I don't know what is wrong. Please help.

Code in my second activity :

package com.mavenmaverick.androidglossary;

import android.net.Uri;
import android.os.Bundle;
import android.app.Activity;
import android.content.Intent;
import android.view.Menu;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.TextView;

public class CActivity extends Activity {

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_c);

    TextView link = (TextView) findViewById(R.id.link);
    link.setOnClickListener(new OnClickListener() {

        @Override
        public void onClick(View arg0) {
            Uri adress= Uri.parse("http;//www.cyanogenmod.com");  
            Intent browser= new Intent(Intent.ACTION_VIEW, adress);  
            startActivity(browser);             
        }
    });

}

模拟器截图

you should use setData()

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

see your code

you have enter url like

 Uri adress= Uri.parse("http;//www.cyanogenmod.com");  

replace with this

   Uri adress= Uri.parse("http://www.cyanogenmod.com");  

problm is ; in Http; replace with http:

TextView link = (TextView) findViewById(R.id.link);
link.setOnClickListener(new OnClickListener() {

    @Override
    public void onClick(View arg0) {
        Intent browser = new Intent(Intent.ACTION_VIEW,Uri.parse("http://www.cyanogenmod.com"));
    startActivity(browser);            
    }
});

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

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