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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T09:54:03+00:00 2026-05-16T09:54:03+00:00

I do some mobile browser testing in the Android web browser through the Android

  • 0

I do some mobile browser testing in the Android web browser through the Android SDK in Linux and I have a couple of questions:

  1. Can I run an Android Virtual Device without the entire Android SDK?
  2. Can I autostart the web browser when starting an Android Virtual Device/emulator?
  • 1 1 Answer
  • 3 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-16T09:54:04+00:00Added an answer on May 16, 2026 at 9:54 am

    I’m not sure why you want to do 1), but 2) is possible if you’re willing to do a bit of work. You have to create a simple Android app that receives the BOOT_COMPLETED hardware event and then launches the browser. Once this app is installed, your browser will start automatically.

    Little background knowledge: How to start an Android project

    The app is pretty simple. You need to declare that your app is to digest the BOOT_COMPLETED event. You can do this in the AndroidManifest.xml:

    <application>
    ...
        <receiver class=".BrowserStartupIntentReceiver">
             <intent-filter>
                  <action android:value="android.intent.action.BOOT_COMPLETED" />
                  <category android:value="android.intent.category.HOME" />
             </intent-filter>
        </receiver> 
    </application>
    

    Then, you just need to implement the BrowserStartupIntentReceiver class. Its only function is to broadcast an intent to the OS to launch the browser.

    public class BrowserStartupIntentReceiver extends IntentReceiver {
        @Override
        public void onReceiveIntent(Context context, Intent intent) {
                Intent myIntent = new Intent(Intent.ACTION_VIEW, 
                Uri.parse("http://www.google.com"));
    
                myIntent.setLaunchFlags(Intent.NEW_TASK_LAUNCH);
                context.startActivity(myStarterIntent);
        }
    }
    

    That should launch the browser when the emulator boots up. Though, it might not be worth going to such lengths to avoid the extra button press.

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

Sidebar

Related Questions

Many mobile web browsers have some default functionality on image hold. For example, user
Can anyone tell me some web or mobile applications or games? So i can
i have some code using jquery mobile + phonegap and run it on my
I'm preparing to develop some mobile apps for Android, iOS and WP7. Having heard
Exists a way/SDK for developing plug-ins for mobile version of Safari browser on iPhone
Like plenty of other people before me, I have some web content that I
I have created a list in jquery mobile which directs to some page on
I'm building a mobile web app targeting Android users. I need to know what
I need to automate web testing for a non-standard web browser built on top
I have to devise a push notification plan for some mobile devices where push

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.