IMPORTANT:Projects Source Code
Available Send us Mail for more
information our Email id is:
ugcnetpreparation009@gmail.com
Plus Android App Freelancer Service
Available Call us More Detail:
+919459675275
+917018736242
1. How to Create an Webview App?
In this Chapter You will able to learn that
how you can make an Webview based app
Like Blog Based App, Website Based App
from the android Studio Software. We would
not make this thing that much difficult for you
and would try to explain simply that how you
have to create a webview app in android studio
In this Tutorial I will tell you that how you can
Create an Webview app from android studio
Within 5 to 6 Simple Steps or Tricks.
Step 1:
This is the First Step is to go the Manifest XML area in android
studio as shown below in the picture. Go to the Manifest and just
So this was the first step where you have to copy this code
That's it, Congrats you have made your First
Do you want to earn Money from you Android
Apps?
Our Pro Version is Also Launching Very soon
From where you can learn that how you can
earn real cash money from Google Admob
Codes Integration, We will also try to
complete the Push Notification subject
in it. Furthermore There will be no ads
in our Pro Version App just pay one time
and you can avoid annoying Ads in our
Pro Version.
Available Send us Mail for more
information our Email id is:
ugcnetpreparation009@gmail.com
Plus Android App Freelancer Service
Available Call us More Detail:
+919459675275
+917018736242
In this Chapter You will able to learn that
how you can make an Webview based app
Like Blog Based App, Website Based App
from the android Studio Software. We would
not make this thing that much difficult for you
and would try to explain simply that how you
have to create a webview app in android studio
In this Tutorial I will tell you that how you can
Create an Webview app from android studio
Within 5 to 6 Simple Steps or Tricks.
Step 1:
Enter following code into androidmenifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.gk.goluugc"> // do not copy
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<meta-data android:name="com.google.android.gms.version"
android:value="@integer/google_play_services_version" />
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name="com.google.android.gms.ads.AdActivity"
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"
android:theme="@android:style/Theme.Translucent" />
</application>
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
</manifest>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.gk.goluugc"> // do not copy
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<meta-data android:name="com.google.android.gms.version"
android:value="@integer/google_play_services_version" />
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name="com.google.android.gms.ads.AdActivity"
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"
android:theme="@android:style/Theme.Translucent" />
</application>
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
</manifest>
copy the above code but don't copy or write the Red lines in
Manfiest you have to just put the above code below of your
own package Name
So this was the first step where you have to copy this code
and have to put below of your package name in android studio
manifest sections.
Step 2:
Now Go to Resource-Values-String in Android Studio
and add this code there:
<resources> <string name="app_name">give app name desire</string> </resources>
For more information you can see below picture from where
it will be so much easy to understand that where you have
go in the Android Studio Software to Add above Code
As above you can see in the picture that you have
to go to the Res Option after that Valuses and Then
you have to choose the String File. So this was
the second step.
Step 3:
Now you have to go to the Main activity Java File
That you can selection by following of this process
Java- Main Activity Java. Go to the Java Option
in Android Studio and Then Selection the
Main Activity Section As shown below in the
graph You have to put this code below of you
package name and import in Main Acitivty Java
package name and import in Main Acitivty Java
public class MainActivity extends Activity { private WebView mWebView; ProgressBar progressBar; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); mWebView = (WebView) findViewById(R.id.activity_main_webview); progressBar = (ProgressBar) findViewById(R.id.progressBar1); WebSettings webSettings = mWebView.getSettings(); webSettings.setJavaScriptEnabled(true); mWebView.loadUrl("http://usstockslearning.blogspot.in/"); } }
As we can see above in the chart that after placing
the code you have to also put your website link or
blog link in the code, you can see that in the last
where the code ends, there is one blogspot address
placed, so the same means your website address
or blog address you have to put there.So this was
your Third Step.
Step4.
This is your fourth step, in this step you have to
copy or write this code as given below for this
yo have to go to the RES section and then Past
it in LAYOUT Section and then Selection Activity
Main XML Option. Means Res-Layout-Activity
Main XML.
That's it, Congrats you have made your First
Webview Android app in android studio,So
this was an simple introduction about Creating
the Webview Anroid Application from the
Android Studio.
Do you want to earn Money from you Android
Apps?
Our Pro Version is Also Launching Very soon
From where you can learn that how you can
earn real cash money from Google Admob
Codes Integration, We will also try to
complete the Push Notification subject
in it. Furthermore There will be no ads
in our Pro Version App just pay one time
and you can avoid annoying Ads in our
Pro Version.



