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 7170693
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T15:15:49+00:00 2026-05-28T15:15:49+00:00

I am trying to add streeview to my android application but I keep getting

  • 0

I am trying to add streeview to my android application but I keep getting the following exception.

01-06 18:35:35.810: E/AndroidRuntime(2497): FATAL EXCEPTION: main
01-06 18:35:35.810: E/AndroidRuntime(2497): java.lang.RuntimeException: Unable to start activity ComponentInfo{glasgo.activities/glasgo.activities.specific_event_activity$MapTab}: android.content.ActivityNotFoundException: No Activity found to handle Intent { act=android.intent.action.VIEW dat=google.streetview:cbll=55867650,-4257630&cbp=1,180,,0,1.0 }
01-06 18:35:35.810: E/AndroidRuntime(2497):     at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1768)
01-06 18:35:35.810: E/AndroidRuntime(2497):     at android.app.ActivityThread.startActivityNow(ActivityThread.java:1598)
01-06 18:35:35.810: E/AndroidRuntime(2497):     at android.app.LocalActivityManager.moveToState(LocalActivityManager.java:127)
01-06 18:35:35.810: E/AndroidRuntime(2497):     at android.app.LocalActivityManager.startActivity(LocalActivityManager.java:339)
01-06 18:35:35.810: E/AndroidRuntime(2497):     at android.widget.TabHost$IntentContentStrategy.getContentView(TabHost.java:654)
01-06 18:35:35.810: E/AndroidRuntime(2497):     at android.widget.TabHost.setCurrentTab(TabHost.java:326)
01-06 18:35:35.810: E/AndroidRuntime(2497):     at android.widget.TabHost$2.onTabSelectionChanged(TabHost.java:132)
01-06 18:35:35.810: E/AndroidRuntime(2497):     at android.widget.TabWidget$TabClickListener.onClick(TabWidget.java:455)
01-06 18:35:35.810: E/AndroidRuntime(2497):     at android.view.View.performClick(View.java:2502)
01-06 18:35:35.810: E/AndroidRuntime(2497):     at android.view.View$PerformClick.run(View.java:9108)
01-06 18:35:35.810: E/AndroidRuntime(2497):     at android.os.Handler.handleCallback(Handler.java:587)
01-06 18:35:35.810: E/AndroidRuntime(2497):     at android.os.Handler.dispatchMessage(Handler.java:92)
01-06 18:35:35.810: E/AndroidRuntime(2497):     at android.os.Looper.loop(Looper.java:130)
01-06 18:35:35.810: E/AndroidRuntime(2497):     at android.app.ActivityThread.main(ActivityThread.java:3835)
01-06 18:35:35.810: E/AndroidRuntime(2497):     at java.lang.reflect.Method.invokeNative(Native Method)
01-06 18:35:35.810: E/AndroidRuntime(2497):     at java.lang.reflect.Method.invoke(Method.java:507)
01-06 18:35:35.810: E/AndroidRuntime(2497):     at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:847)
01-06 18:35:35.810: E/AndroidRuntime(2497):     at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:605)
01-06 18:35:35.810: E/AndroidRuntime(2497):     at dalvik.system.NativeStart.main(Native Method)
01-06 18:35:35.810: E/AndroidRuntime(2497): Caused by: android.content.ActivityNotFoundException: No Activity found to handle Intent { act=android.intent.action.VIEW dat=google.streetview:cbll=55867650,-4257630&cbp=1,180,,0,1.0 }
01-06 18:35:35.810: E/AndroidRuntime(2497):     at android.app.Instrumentation.checkStartActivityResult(Instrumentation.java:1409)
01-06 18:35:35.810: E/AndroidRuntime(2497):     at android.app.Instrumentation.execStartActivity(Instrumentation.java:1379)
01-06 18:35:35.810: E/AndroidRuntime(2497):     at android.app.Activity.startActivityFromChild(Activity.java:3067)
01-06 18:35:35.810: E/AndroidRuntime(2497):     at android.app.Activity.startActivityForResult(Activity.java:2847)
01-06 18:35:35.810: E/AndroidRuntime(2497):     at android.app.Activity.startActivity(Activity.java:2933)
01-06 18:35:35.810: E/AndroidRuntime(2497):     at glasgo.activities.specific_event_activity$MapTab.onCreate(specific_event_activity.java:169)
01-06 18:35:35.810: E/AndroidRuntime(2497):     at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1047)
01-06 18:35:35.810: E/AndroidRuntime(2497):     at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1722)

I am using the GreenDroid library and my map view is within a static class which GreenDroid requires for to use it’s tabs.

    public static class MapTab extends MapActivity {
    private MapController controller;
    private MapView mapView; 

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

        // code to get a map with zoom controls and double tap support
        setContentView(R.layout.map_with_zomm_and_tap);
        mapView = (MapView) findViewById(R.id.mapview);
        controller = mapView.getController();
        // some other code which runs fine

        Intent streetViewIntent = new Intent(Intent.ACTION_VIEW, Uri.parse 
                     ("google.streetview:cbll=55867650,-4257630&cbp=1,180,,0,1.0")); 
        startActivity(streetViewIntent); 
        }

I am currently just trying to make it display the street view and then I will create a button to toggle between street view and normal map view.

I have a map key and am able to display the normal map view in my application in my manifest I have added
uses-library android:name=”com.google.android.maps”

Any help would greatly be appreciated.

  • 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-28T15:15:50+00:00Added an answer on May 28, 2026 at 3:15 pm

    Turns out it was due to StreetView not being installed on the device or emulator.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Im trying to add a directory foo to my repo, but there are some
I'm trying make one treeView with infinite subgroups. I can add my groups but
I'm trying add Taskbar Icon overlay with text to windows7 application icon, I did
I am trying add OR operator in awk command. The following does not work.
I'm trying add vertical lines to my grid. I have found some examples but
I am new to ROR. I am trying add translations to my application. I
I'm trying add a tab to my web page that looks like this: Using
Trying to add an onclick handler to my tabs, and can't seem to get
trying to add an ExpiresDefault ExpiresByType to content on my website so that way
Trying to add a 'box' to a form at design time, I looked up

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.