Skip to main content

Posts

Showing posts from November, 2018
 

How to make Recyclerview + Share option + Clipboard Manager in Android Studio (Koltin)

How to make Recyclerview + Share option + Clipboard Manager in Android Studio (Koltin) : Hello guys, Welcome back to Coding Junction. In this article, we will talk about recyclerview adapter and implicit intent type share option and If I have time then we will discuss the clipboard manager otherwise we cover it in the next article. Our application will look like this : Edit the activity_main.xml Now, we will add the recyclerview in the layout file. Recyclerview is an advanced form of the listview. Nowadays we are using recyclerview for better customize and for the better user interface. First, add the recylerview in the libraries, then write the below codes in your activity_main.xml file. Remark that you want to remove the default layout from the XML file. activity_main.xml 1 2 3 4 5 6 7 8 9 10 11 <android.support.v7.widget.RecyclerView android:id= "@+id/recyclerview" xmlns:android= "http://schemas.android.com/apk/re

How to Became a good Android Developer

How to Became a good Android Developer :  Hi guys, so in this article, I will share with you that "How to Became a good Android Developer". With a powerful key point. Software for Developing Android App There is much software, in which you can develop the android application. The most popular and the best one is "Android studio".Android Studio was developed by JetBrains. Android studio is having many types of tools, in which you can develop the best android application. You can develop a stunning user interface in Android Studio. The second most popular software is a flutter, which was newly launched by Google. You want to learn Dart programing language for flutter, Also you can develop the application for both Platform, android as well as IOS too. There is a bunch of more software for android development like Eclipse, C++ Builder Etc. Programming Language for becoming Android Developer So, there are several programming languages which you w

How to make a 2D Game in Android Studio Using Koltin 004

Hi Guys, This is our four article on " How to make a 2D Game in Android Studio Using Koltin ", also this is our last article on the 2d game in the android studio. In this article, we will draw obstacles on the surface of the screen, And we will draw the game over and scoreboard on the screen. If you did not read the previous article, then Click Here . Let move to the tutorial. Create A New Kotlin Class Create a new Kotlin class, Name it "ObstacleManager". Basically, we will handle the color, height, gap of the obstacles and also we will handle the player gap in the obstacles manager, and we will show the game over when the player hits the obstacles, also we will add score when player pass through the obstacles. We will mention an array list of obstacles to the obstacles manager. We will add the color handler in the obstacles manager. So, copy the below codes and it into your "ObstacleManager". 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 1