Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6987833
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T18:59:24+00:00 2026-05-27T18:59:24+00:00

I am not able to get the ACTION_WEB_SEARCH to work correctly, does this require

  • 0

I am not able to get the ACTION_WEB_SEARCH to work correctly, does this require any permissions on the AndriodManifest.xml?

The other ACTIONS work(email,call,sms).Also how to make a map search ?
what Action to use is there any action_searchmap?
here is the error i get when try to go to an url

            12-30 15:34:33.798: E/AndroidRuntime(4972): FATAL EXCEPTION: main
                       12-30 15:34:33.798: E/AndroidRuntime(4972): android.content.ActivityNotFoundException: No Activity found to handle Intent { act=android.intent.action.VIEW dat=url:http://www.google.com }
                        12-30 15:34:33.798: E/AndroidRuntime(4972):     at android.app.Instrumentation.checkStartActivityResult(Instrumentation.java:1408)
                        12-30 15:34:33.798: E/AndroidRuntime(4972):     at android.app.Instrumentation.execStartActivity(Instrumentation.java:1378)
                          12-30 15:34:33.798: E/AndroidRuntime(4972):   at android.app.Activity.startActivityForResult(Activity.java:2817)
                        12-30 15:34:33.798: E/AndroidRuntime(4972):     at android.app.Activity.startActivity(Activity.java:2923)
                          12-30 15:34:33.798: E/AndroidRuntime(4972):   at org.example.dbcontactconsole.Detalii.onListItemClick(Detalii.java:91)
                        12-30 15:34:33.798: E/AndroidRuntime(4972):     at android.app.ListActivity$2.onItemClick(ListActivity.java:321)
                       12-30 15:34:33.798: E/AndroidRuntime(4972):  at android.widget.AdapterView.performItemClick(AdapterView.java:284)
                        12-30 15:34:33.798: E/AndroidRuntime(4972):     at android.widget.ListView.performItemClick(ListView.java:3382)
                         12-30 15:34:33.798: E/AndroidRuntime(4972):    at android.widget.AbsListView$PerformClick.run(AbsListView.java:1696)
                         12-30 15:34:33.798: E/AndroidRuntime(4972):    at android.os.Handler.handleCallback(Handler.java:587)
                        12-30 15:34:33.798: E/AndroidRuntime(4972):     at android.os.Handler.dispatchMessage(Handler.java:92)
                         12-30 15:34:33.798: E/AndroidRuntime(4972):    at android.os.Looper.loop(Looper.java:123)
                              12-30 15:34:33.798: E/AndroidRuntime(4972):   at android.app.ActivityThread.main(ActivityThread.java:4627)
                            12-30 15:34:33.798: E/AndroidRuntime(4972):     at java.lang.reflect.Method.invokeNative(Native Method)
                            12-30 15:34:33.798: E/AndroidRuntime(4972):     at java.lang.reflect.Method.invoke(Method.java:521)
             12-30 15:34:33.798: E/AndroidRuntime(4972):    at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:868)
             12-30 15:34:33.798: E/AndroidRuntime(4972):    at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:626)
             12-30 15:34:33.798: E/AndroidRuntime(4972):    at dalvik.system.NativeStart.main(Native Method)

my java code is:
`
if (cursor.getCount() == 1)
{
cursor.moveToFirst();

   actiune= new ArrayList<Actiune>();
   String phoneString=cursor.getString(cursor.getColumnIndex("phone"));
   if (phoneString!=null)
   {
    actiune.add(new Actiune("Suna la numar",phoneString,Actiune.ACTION_CALL));
    actiune.add(new Actiune("SMS",phoneString,Actiune.ACTION_SMS));
   }
   String stringemail = cursor.getString(cursor.getColumnIndex("email"));
   if (stringemail != null) {
           actiune.add(new Actiune("Email", stringemail,Actiune.ACTION_EMAIL));
           }
   adapter = new ActiuneAdapter();
   setListAdapter(adapter);
   String stringurl = cursor.getString(cursor.getColumnIndex("url"));
   if (stringurl != null) {
           actiune.add(new Actiune("ADRESA URL", stringurl,Actiune.ACTION_VIEW));
           }
   adapter = new ActiuneAdapter();
   setListAdapter(adapter);
           }
           }
            public void onListItemClick(ListView parent, View view, int position, long id) {

Actiune action = actiune.get(position);

Intent intent;
switch (action.getType()) {

    case Actiune.ACTION_CALL:  
            Uri callUri = Uri.parse("tel:" + action.getData());  
            intent = new Intent(Intent.ACTION_CALL, callUri);
        startActivity(intent);
            break;

    case Actiune.ACTION_EMAIL:  
    intent = new Intent(Intent.ACTION_SEND);
    intent.setType("plain/text");
    intent.putExtra(Intent.EXTRA_EMAIL, new String[]{action.getData()});
    startActivity(intent);
    break;
    case Actiune.ACTION_SMS:  
        Uri smsUri = Uri.parse("sms:" + action.getData());  
        intent = new Intent(Intent.ACTION_VIEW, smsUri); 
        startActivity(intent);
        break;
    case Actiune.ACTION_VIEW:
        Uri adressuri=Uri.parse("url:"+action.getData());
    intent = new Intent(Intent.ACTION_VIEW,adressuri);
                startActivity(intent);
       }
         }    

`

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T18:59:25+00:00Added an answer on May 27, 2026 at 6:59 pm

    In the ACTION_VIEW case, remove url: from the uri:

    Uri adressuri = Uri.parse(action.getData());
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am not able to get my jwysiwyg and Jhtmlarea text editors to work
I've read the DateFormatting guide and I'm still not able to get a working
I have few Question for which I am not able to get a proper
I have done jQuery and Ajax, but I am not able to get the
Trying out the examples found on pleac.sf.net , I'm not able to get an
I am not able to figure out this simple thing in ASP.NET MVC: I
I have trying this for some time now but I am not able to
I am not able to access localhost https pages in firefox3. It gave the
I am not able to use the breakpoint in Studio with Javascript. I'm able
Why are we not able to override an instance variable of a super class

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.