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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T10:31:38+00:00 2026-05-29T10:31:38+00:00

I built a site in asp.net C#. Visual Studio 2010. The site scales nicely

  • 0

I built a site in asp.net C#. Visual Studio 2010.

The site scales nicely and fits on my phone and other Android divices. It database driven also. I want to make an app for the android market out of my site now. Free app.

Can i easily accomplish this? Can a app be as simple as launching a browser window? Will the android market accept an app like that?

Point me in the right direction please. Im unsure where to start.

  • 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-29T10:31:39+00:00Added an answer on May 29, 2026 at 10:31 am

    What you describe can be easily accomplished using a WebView.

    WebView (from android developers) : A View that displays web pages. This class is the basis upon which you can roll your own web browser or simply display some online content within your Activity. It uses the WebKit rendering engine to display web pages and includes methods to navigate forward and backward through a history, zoom in and out, perform text searches and more.

    Here’s a simple sample app:

    public class WebActivity extends Activity {
    
        WebView mWebView;
    
        @Override
        public void onCreate(Bundle savedInstanceState)
        {
            final Activity mActivity = this;
            super.onCreate(savedInstanceState);
    
            // Adds Progrss bar Support
            this.getWindow().requestFeature(Window.FEATURE_PROGRESS);
            setContentView(R.layout.main);
    
    
            // Makes Progress bar Visible
            getWindow().setFeatureInt( Window.FEATURE_PROGRESS, Window.PROGRESS_VISIBILITY_ON);
    
            mWebView = (WebView) findViewById( R.id.webview );
            mWebView.getSettings().setJavaScriptEnabled(true);     
            mWebView.loadUrl(http://your.url.com);
    
    
            mWebView.setWebChromeClient(new WebChromeClient() 
            {
                public void onProgressChanged(WebView view, int progress)  
                {
                    //Make the bar disappear after URL is loaded, and changes string to Loading...
                    mActivity .setTitle("Loading...");
                    mActivity .setProgress(progress * 100); //Make the bar disappear after URL is loaded
    
                    // Return the app name after finish loading
                    if(progress == 100)
                    {
                        financialPortalActivity.setTitle(R.string.yourWebSiteName);
                    }
                }
            });
        }
    }
    

    and a very simple layout file: main.xml

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

    Of course you will have to set a permission in your Manifest:

     <uses-permission android:name="android.permission.INTERNET" />
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I've built an ASP.Net site in Visual Studio, and created the DB inside it
I have built my new website in Visual Studio 2010 (C# - ASP.NET 4).
I fired up my first asp.net 4 app put together with visual studio 2010
I'm using MS WebDeploy out of Visual Studio 2010 to deploy a ASP.NET 2.0
I've built a web site on ASP.NET MVC and one little section of it
I have a asp.net web site built with .net 2.0 framework. we recently purchased
I have a web site built using asp.net with ugly URLs like /DisplayContent.aspx?id=789564 .
I'm running Visual Studio 2010 and IIS 7.5 My site accesses a specified servers
I have created my site using ASP.NET Personal Starter Kits 3.5. I use Visual
I have a site built in ASP.NET MVC and uses heavy jQuery client interaction

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.