Android: Switch into another activity

To switch into another activity, the method we use is startActivity(). This is what starts another Android activity:

Replace NameOfActivity with the name of any activity you’d like to switch into.

Read More

Android: Basic WebView Tutorial

A WebView lets you pull a web page and display it in your Android app. It doesn’t take long to implement an Android WebView. Read on. I’ll show you how. AndroidManifest.xml First, open your manifest file to add this permission for INTERNET:

The web page won’t be loaded into your app without this permission. […]

Read More