Skip to main content

Posts

Showing posts with the label kotlin tutorial
 

How to make image slider by view flipper in the android studio(kotlin)

Hi Guys, you have seemed professional android application which usually having image slider, So, in this, we will learn " How to make image slider by view flipper in the android studio(kotlin) ". activity_main.xml 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 <LinearLayout xmlns:android= "http://schemas.android.com/apk/res/android" xmlns:tools= "http://schemas.android.com/tools" xmlns:app= "http://schemas.android.com/apk/res-auto" android:layout_width= "match_parent" android:layout_height= "match_parent" tools:context= ".MainActivity" android:orientation= "vertical" > <ViewFlipper android:id= "@+id/v_flipper" android:layout_width= "match_parent" android:layout_height= "220dp" /> </LinearLayout> MainActivity.kt 1 2 ...

How to make Image Slider by view pager in the android studio(kotlin)

Hi Guys, you have seen many popular android application with an image slider. So, let's learn " How to make Image Slider by view pager in the android studio(kotlin) " actvity_main.xml 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 <android.support.constraint.ConstraintLayout xmlns:android= "http://schemas.android.com/apk/res/android" xmlns:tools= "http://schemas.android.com/tools" xmlns:app= "http://schemas.android.com/apk/res-auto" android:layout_width= "match_parent" android:layout_height= "match_parent" tools:context= ".MainActivity" > <android.support.v4.view.ViewPager android:id= "@+id/viewpager" android:layout_width= "436dp" android:layout_height= "220dp" app:layout_constraintStart_toStartOf= "parent" android:l...

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...