Android – AcadGild https://acadgild.com/blog Learn. Do. Earn. Thu, 25 Aug 2016 12:01:42 +0000 en-US hourly 1 https://wordpress.org/?v=4.5.3 103159356 A GitHub Integration with Android Studio https://acadgild.com/blog/github-integration-android-studio/ https://acadgild.com/blog/github-integration-android-studio/#comments Thu, 11 Aug 2016 17:44:13 +0000 https://acadgild.com/blog/?p=14695 Overview This blog will help you in integrating the Github with the Android Studio IDE and also covers the whole process into very simple steps and understandable figures can make the beginners experience the things very easy. Prerequisites I Recommend you to refer my previous blog “An intro to Git and Git for beginners” to […]

The post A GitHub Integration with Android Studio appeared first on AcadGild.

]]>
https://acadgild.com/blog/github-integration-android-studio/feed/ 1 14695
An Intro to Git and GitHub for Beginners – Part 01 https://acadgild.com/blog/intro-git-github-beginners-part-01-2/ https://acadgild.com/blog/intro-git-github-beginners-part-01-2/#comments Tue, 09 Aug 2016 10:31:24 +0000 https://acadgild.com/blog/?p=14225 History behind the Github ⦁ File System Handled Before Centralized System ⦁ Centralized System ⦁ Distributed System ⦁ Differences between Centralized and Distributed System File System Handled before – Centralized System ⦁ In the era of 20th Century, there was a big concern with the record management. ⦁ physically separate file collection can create extra […]

The post An Intro to Git and GitHub for Beginners – Part 01 appeared first on AcadGild.

]]>
https://acadgild.com/blog/intro-git-github-beginners-part-01-2/feed/ 3 14225
Android Custom Content Provider with Example https://acadgild.com/blog/android-custom-content-provider-example/ https://acadgild.com/blog/android-custom-content-provider-example/#respond Tue, 09 Aug 2016 08:41:43 +0000 https://acadgild.com/blog/?p=12762 Introduction: ContentProvider is one of the pillars of Android. It is a component which i)- hides database details (database name, table name, column info. etc.) ii)- allows the application to share data among multiple applications. Steps to create ContentProvider: i)- Create ContentProvider subclass (android.ContentProvider). ii)- Register ContentProvider in AndroidManifest.xml file using provider element. (<provider>). To […]

The post Android Custom Content Provider with Example appeared first on AcadGild.

]]>
https://acadgild.com/blog/android-custom-content-provider-example/feed/ 0 12762
Introduction to Serializable & Parcelable https://acadgild.com/blog/introduction-serializable-parcelable/ https://acadgild.com/blog/introduction-serializable-parcelable/#respond Wed, 27 Jul 2016 01:53:11 +0000 https://acadgild.com/blog/?p=12759 Introduction: Serializable and Parcelable are two interfaces, where Serializable is a standard java interface and Parcelable is an Android-specific interface. Serializable interface implemented by “java.io.Serializable” and Parcelable interface by “android.os.Parcelable”. In Android, if we want to pass the objects to activities then there is a need to implement the Serializable or Parcelable interface. Serializable interface […]

The post Introduction to Serializable & Parcelable appeared first on AcadGild.

]]>
https://acadgild.com/blog/introduction-serializable-parcelable/feed/ 0 12759
Introduction to Android SqLite https://acadgild.com/blog/introduction-android-sqlite/ https://acadgild.com/blog/introduction-android-sqlite/#respond Tue, 26 Jul 2016 18:20:09 +0000 https://acadgild.com/blog/?p=12753 Introduction: Android SQlite is an open source database which comes with Android OS. It is a lightweight database as it requires limited memory at runtime. SQlite is different from other databases. It supports relational database features. It is used to store the user data. We can perform many operations in SQlite database like Create, Read, […]

The post Introduction to Android SqLite appeared first on AcadGild.

]]>
https://acadgild.com/blog/introduction-android-sqlite/feed/ 0 12753
Introduction to Fragments in Android https://acadgild.com/blog/introduction-fragments-android/ https://acadgild.com/blog/introduction-fragments-android/#comments Tue, 19 Jul 2016 18:16:16 +0000 https://acadgild.com/blog/?p=11465 Introduction: Fragment is a small part of Activity. It split the Activity into Sub Activity called Fragment that fits into an Activity. This feature was first time introduced in Android 3.0 HoneyComb (API level 11). There is no need to add any permissions inside a manifest file to create the Fragment in your application. It […]

The post Introduction to Fragments in Android appeared first on AcadGild.

]]>
https://acadgild.com/blog/introduction-fragments-android/feed/ 1 11465
Sliding TabLayout Example in Android https://acadgild.com/blog/sliding-tab-layout-android/ https://acadgild.com/blog/sliding-tab-layout-android/#respond Tue, 19 Jul 2016 18:13:05 +0000 https://acadgild.com/blog/?p=11679 Introduction: This feature comes with Android design support library. Android Sliding Tab Layout shows a custom view pager, tab strip which provides us a continuity in the layout when scrolling. Real Time Example: YouTube application uses the functionality of Sliding Tab Layout. We can see this while sliding it. Classes & Methods: There is a […]

The post Sliding TabLayout Example in Android appeared first on AcadGild.

]]>
https://acadgild.com/blog/sliding-tab-layout-android/feed/ 0 11679
How to Create Splash Screen in Android https://acadgild.com/blog/create-splash-screen-android/ https://acadgild.com/blog/create-splash-screen-android/#respond Sat, 16 Jul 2016 07:56:32 +0000 https://acadgild.com/blog/?p=11671 Introduction A Splash screen is a graphical control element consisting of a window containing an image, a logo and the current version of the software. A splash screen usually appears while a game or program is launching. @source wiki The splash screen is an activity that will show for a specific time mentioned when your app is starting and after […]

The post How to Create Splash Screen in Android appeared first on AcadGild.

]]>
https://acadgild.com/blog/create-splash-screen-android/feed/ 0 11671
JSON vs XML https://acadgild.com/blog/xml-vs-json/ https://acadgild.com/blog/xml-vs-json/#respond Sat, 16 Jul 2016 07:08:17 +0000 https://acadgild.com/blog/?p=11656 In Web Application Development, we use different types of formats for accessing a data over the web. Today, we will compare two different formats JSON (JavaScript Object Notation) and XML (Extensible Markup Language). Both have their particular usage for to & fro data passing. JSON (JavaScript Object Notation) – A model of efficiency A Lightweight […]

The post JSON vs XML appeared first on AcadGild.

]]>
https://acadgild.com/blog/xml-vs-json/feed/ 0 11656
Introduction of RecyclerView in Android https://acadgild.com/blog/introduction-recyclerview-android/ https://acadgild.com/blog/introduction-recyclerview-android/#respond Fri, 15 Jul 2016 03:48:18 +0000 https://acadgild.com/blog/?p=11458 Introduction: Recycler View is a new widget of Android i.e. “android.support.v7.widget.RecyclerView”. Recycler View is an advanced form of ListView and GridView. It works like a ListView but it is more flexible and advance with the large data set. By using LayoutManager class in RecyclerView we can show the items in horizontally and vertically scrolling list. […]

The post Introduction of RecyclerView in Android appeared first on AcadGild.

]]>
https://acadgild.com/blog/introduction-recyclerview-android/feed/ 0 11458