How to do Webview in Android
Webview In this post, I will show how you import HTML files from the asset folder and show them in webview Create an asset folder […]
Read More →Webview In this post, I will show how you import HTML files from the asset folder and show them in webview Create an asset folder […]
Read More →Today we will quickly learn how we can create a navigation drawer in our android app and we’ll be using the default navigation board that […]
Read More →Android Studio Listview: MainActivity.XML: <?xml version=”1.0″ encoding=”utf-8″?> <LinearLayout xmlns:app=”http://schemas.android.com/apk/res-auto” xmlns:tools=”http://schemas.android.com/tools” xmlns:android=”http://schemas.android.com/apk/res/android” android:layout_width=”wrap_content” android:layout_height=”wrap_content” android:orientation=”vertical” > <ListView android:layout_width=”wrap_content” android:layout_height=”wrap_content” android:id=”@+id/list” > </ListView> </LinearLayout> MainActivity.Java: Just create […]
Read More →First Step: 2nd Step: Place (database file).DB folder in assets folder. 3rd Step: Create a Recycler View, adapter, and layout For recycler view tutorial, click […]
Read More →Android Studio Recyclerview: The Recyclerview is an advanced version of listview, In the Recyclerview, the single layout has been set and the remaining data […]
Read More →Step1: Start with Creating a new Project>File>New>New Project Step2: After creating the project Below is the activity First Activity: <?xml version=”1.0″ encoding=”utf-8″?> <RelativeLayout xmlns:android=”http://schemas.android.com/apk/res/android” xmlns:app=”http://schemas.android.com/apk/res-auto” […]
Read More →Intent Tutorial The intent is described as moving from one point to another The intent is of two types Explicit Intent: Explicit Intent is used […]
Read More →