Hurry Up, Earn a Developer Scholarship from Google!



What you will get and what they provides

How it Works

To apply for a scholarship, you need to be at least 18 years old and live in the US. You'll begin by choosing your learning path, either Web Developer or Android Developer. From there, once you're accepted, we'll place you in one of two tracks, depending on your existing skills and experience, either Beginner or Intermediate. After that, the learning begins! Finally, top students from each track will earn full scholarships to one of our Android or Web Development Nanodegree programs.


25,000 Web Developer seats available!

If accepted, you'll be placed into one of two tracks based on your experience level.


Click here below to get more details about course



How to Apply
  • Icon calendar blue  Applications Due - November 30, 2017
  • Icon leaderboard blue Recipients notified - December 7, 2017
  • Icon console blue  Recipients begin program - December 11, 2017
The application is straightforward, and should take 10-15 minutes. There is a single application for all, whether you're interested in Mobile or Web, and whether you're a beginner or already have experience.

Answer what you can, to the best of your ability, and we'll do the rest! Remember this application is open to residents of the US who are at least 18 years old.

Apply by November 30, 2017 (8:59pm PST)



Kotlin Conference Nov 2-3 at San Francisco


KotlinConf is just around the corner, and if you haven’t checked out the great speaker line-up and sessions, you might want to do that now! We’ve got two days jam-packed with content around Kotlin, whether you’re doing mobile, desktop, server-side or web front-end development, there are lots of talks for you.


Schedule for the workshop:


9:00 am - 5:00 pm
Kotlin Workshop for Java Developers.
Svetlana Isakova
Max capacity 50

Oreo: Auto-sizing Textview in Android Studio using Kotlin


Android 8.0 (API level 26) allows you to instruct a TextView to let the text size expand or contract automatically to fill its layout based on the TextView's characteristics and boundaries. This setting makes it easier to optimize the text size on different screens with dynamic content.

First important part to enable auto sizing textview, put this in textview:

android:autoSizeTextType="uniform"

This can explore the vertically and horizontally, ignoring text size.

If you are using support library make sure you have to use:

xmlns:app="http://schemas.android.com/apk/res-auto"

You can not use wrap content both layout height and width, because that may produce unexpected result, instead match parent or fix size. 

You can use either framework or support library to set up the autosizing of TextView programmatically or in XML. To set the XML attributes, you can also use the Properties window in Android Studio.
There are three ways you can set up the autosizing of TextView:


Note: If you set autosizing in an XML file, it is not recommended to use the value "wrap_content" for the layout_width or layout_height attributes of a TextView. It may produce unexpected results.

Now, if you are using from xml, the do following :



If you want make from programmatically then do this:


Here are array inside the values/arrays.xml, please make sure name should be same as in textview properties.



Here is the simple output that looking like:
Clone/Download/Fork/Star Full Source Code From github

Source:  Developer.android.com
#ILoveKotlin #PrAndroid #KotlinTutorials #AndroidTutorials

Robolectric example in Android using kotlin


Robolectric is a unit test framework that de-fangs the Android SDK jar so you can test-drive the development of your Android app. Tests run inside the JVM on your workstation in
seconds. Robolectric help to make more efficient unit test.

Here are example how to test android code using robolectric.

First you have to add dependencies in app.gradle file,just like that as your latest robolectric version

testImplementation "org.robolectric:robolectric:3.3.2"

Now you have to write code in test file in unit testing section not in ui testing,


Then, Now you have add some kotlin code,


In Second kotlin code, which is pass some value from on activity one activity to another activity,




Rest of the layout file as your requirement, but you want to details, please see below git hub link
Run as test runner,

the you have to see, test will be passed.

Download and fork git hub code: https://github.com/dharmakshetri/RoboelectricKotlinExample

#HappyCoding #Kotlin #Robolectric #Android

Udacity: Self-Driving Cars Scholarship Program


Lyft and Udacity share a commitment to preparing for an autonomous future where technologies like self-driving cars will benefit our cities, our environment, and our lives. We are committed to making that future more accessible to all—through education programs, open platforms, and now scholarships. This scholarship program is dedicated to increasing diversity in the field of self-driving cars, and helping you take that first step to becoming a self-driving car engineer.       


How to apply

This scholarship program is open to learners with varying levels of experience, currently living in the U.S., who are eager to pursue a career in self-driving cars.
  • September 19, 2017 - Applications open
  • October 1, 2017 - Applications close (11:59pm PST)
  • October 5, 2017 - Winners announced


#Udacity #SelfDrivingCar
      All the resources and content taken from: udacity.com

Display iframe video and graph inside the webview in kotlin

A View that displays web pages. This class is the basis upon which you can roll your own web
browser or simply display some online content within your Activity. It uses the WebKit rendering engine to display web pages and includes methods to navigate forward and backward through a history, zoom in and out, perform text searches and more.


Note that, in order for your Activity to access the Internet and load web pages in a WebView, you must add the INTERNET permissions to your Android Manifest file:



<uses-permission android:name="android.permission.INTERNET" />
This must be a child of the <manifest> element.
Define the webview respective webSetting an its java script enable.

and iframe source 


Output looks like:




#HappyCoding #ILoveKotlin #PrAndroid
Download and fork full source code: https://github.com/dharmakshetri/IFrameVideo

Advanced Multi Threading in Java [ Latch ]

CountDown latch is one of the kinds of synchronizer which wait for another thread before performing the tasks or This is used to synchronize one or more tasks by enabling them to wait for the tasks completed by other tasks.  It was introduced in Java 5 along with other CyclicBarrier, Semaphore, CuncurrentHashMap and BlockingQueue. Its somehow like the wait and notify but in the more simpler form and will much less code.

It basically works in the latch principle. Or let us suppose we have a seller who is going to sell 10 (No. of operations) apples. The number of customers may be anything but what the seller is concerned about is the number of apples because when it reaches to 0 he can go home. The seller(Main Thread) will wait for the customers (awaits()). Let's say there are 10 customers(Threads) now who are in the line to buy Apple. When one customer buys that Apple then the number of apple decrease by 1 (countdown()) and another customer will get a chance to buy that apple so on the number of apples goes on decreases and finally become 0. After no apples left in the bucket, the seller can stop selling and go home happily. 

Note:: In CountDown Latch the countdown cannot be reset. 

Let's have a look at Java code::

package com.latch;

import java.util.Random;
import java.util.concurrent.CountDownLatch;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;

/**
 * Created by yubraj on 1/16/17.
 */




public class latch {

 public static void main(String[] args) {
  ExecutorService executorService = Executors.newSingleThreadExecutor();
  CountDownLatch countDownLatch = new CountDownLatch(5);

  for (int i = 0; i < 5; i++)
   executorService.execute(new Worker(i, countDownLatch));

  try {
   countDownLatch.await();
  } catch (InterruptedException e) {
   e.printStackTrace();
  }

  System.out.println("All the prerequities are done now the application is ready to run yuppy!!!");
  executorService.shutdown();

 }

}

class Worker implements Runnable {
 private int id;
 private CountDownLatch countDownLatch;
 private Random random;

 public Worker(int id, CountDownLatch countDownLatch) {
  this.id = id;
  this.countDownLatch = countDownLatch;
 }

 @Override
 public void run() {
  dowork();
  countDownLatch.countDown();
 }

 private void dowork() {
  System.out.println("Thread with id " + this.id + " is Running .....");
  try {
   Thread.sleep(1000);
  } catch (InterruptedException e) {
   e.printStackTrace();
  }
 }

}


Alert Dialog box in android using Kotlin




A subclass of Dialog that can display one, two or three buttons. If you only want to display a String in this dialog box, use the setMessage() method.  Most frequently using part is creating alert dialog box during application development. Here we are going to develop alert dialog using kotlin.



Here is simle kotlin code:





and output looks like:




I hope you are enjoying simple code than java for making alert dialog box with take and give inputs.

full code: https://goo.gl/rJLyc7

#HappyCoding #ILoveKotlin #PrAndroid

Solution: “Type inference failed” error by using "findViewById” in Kotlin

If you get any error when you are using kotlin and references views to kotlin, then most of time every developer faced  “Type inference failed” error  in Kotlin.

We have few option for such kind of error in kotlin,


var tvName = findViewById(R.id.txtName) as TextView

to
 
var tvName = findViewById<TextView>(R.id.txtName) 

You can use Kotlin Android Extensions too for that. Check the doc here.

Kotlin Android Extensions:

  • In your app gradle.build add apply plugin: 'kotlin-android-extensions'
  • In your class add import for import kotlinx.android.synthetic.main.<layout>.* where <layout> is the filename of your layout. for example activity_main
  • That's it, you can call TextView directly in your code.
Sometimes its works like this:

var tvName:TextView = findViewById(R.id.txtName) as TextView
If you are using Anko, then you have to do this:

var tvName:TextView = find(R.id.txtName)
Where bind internally work like this:

fun <T : View> Activity.bind(@IdRes res : Int) : T {
    @Suppress("UNCHECKED_CAST")
    return findViewById(res) as T}
More info:
https://kotlinlang.org/docs/tutorials/android-plugin.html
https://blog.jetbrains.com/kotlin/2015/04/announcing-anko-for-android/
https://developer.android.com/sdk/api_diff/26/changes.html
#HappyCoding #ILoveKotlin #PrAndroid

How to Install Crashlytics via Gradle in Android Studio and Kotlin

Crashlytics is the most powerful, yet lightest weight crash reporting solution.Spend less time finding and more time fixing crashes. Named the #1 performance SDK on both iOS and Android, Crashlytics provides deep and actionable insights, even the exact line of code your app crashed on.

First you have to signup in fabric.io.Then do following steps integrate crashlytics in android using kotlin.

1. Go To build.gradle(Project) and add following dependencies.


2. Go To build.gradle(App) and add following dependencies.


and click sync button on the top:

3. Now, Time to add some fabric key and give internet permission in manifest file



4. Then add following coding snippet in you code, where you want to be add crash.


Now you got email and click view, Then you will get following screen in fabric.io,




Want to know more about installation in android, please visit : fabric.io
#HappyCoding #ILoveKotlin #PrAndroid




What is new in Android Oreo?

After more than a year of development and months of testing by developers and early adopters (thank you!), we're now ready to officially launch Android 8.0 Oreo to the world. Android 8.0 brings a ton
pic courtesy: developer.android.com

of great features such as picture-in-picture, autofill, integrated Instant Apps, Google Play Protect, faster boot time, and much more.

Make your apps compatible

Test your apps for compatibility with Android Oreo. Just download a device system image, install your current app, and test in areas where behavior changes may affect the app. 

Build for Android Oreo

Target Android Oreo (API 26) and extend your apps with the latest platform capabilities and APIs.      



         
The latest version of Android that’s smarter, faster, and more powerful. Android Oreo gives you many new ways to extend your app and develop more efficiently.




Splash screen in android using KOTLIN

Splash screen in android using kotlin just like java. Thread in java is same as kotlin, we have to make

 thread run certain time and go to next activity( or main activity) .

SpashScreen.Kt



You have to make your own layout as your requirement in activity_splash.xml.

It work just like java splash screen, it will be automatically redirect to MainActivity after 5 second.

#HappyCoding #ILoveKotlin #PrAndroid


Kotlin 1.1.4-2 is released with new features

Kotlin 1.1.4-2 is just released with several important hotfixes, here are some change logs that kotlin changes in new released version.

1.1.4-2

  • KT-19679 CompilationException: Couldn't inline method call 'methodName' into...
  • KT-19690 Lazy field in interface default method leads to ClassFormatError
  • KT-19716 Quickdoc Ctrl+Q broken while browsing code completion list Ctrl-Space
  • KT-19717 Library kind incorrectly detected for vertx-web in Kotlin project
  • KT-19723 "Insufficient maximum stack size" during compilation

What feature do we have in kotlin 1.1.4

Android

New Features

  • KT-11048 Android Extensions: cannot evaluate expression containing generated properties

Performance Improvements

  • KT-10542 Android Extensions: No cache for Views
  • KT-18250 Android Extensions: Allow to use SparseArray as a View cache

Fixes

  • KT-11051 Android Extensions: completion of generated properties is unclear for ambiguous ids
  • KT-14086 Android-extensions not generated using flavors dimension
  • KT-14912 Lint: "Code contains STOPSHIP marker" ignores suppress annotation
  • KT-15164 Kotlin Lint: problems in delegate expression are not reported
  • KT-16934 Android Extensions fails to compile when importing synthetic properties for layouts in other modules
  • KT-17641 Problem with Kotlin Android Extensions and Gradle syntax
  • KT-17783 Kotlin Lint: quick fixes to add inapplicable @RequiresApi and @SuppressLint make code incompilable
  • KT-17786 Kotlin Lint: "Surround with if()" quick fix is not suggested for single expression get()
  • KT-17787 Kotlin Lint: "Add @TargetApi" quick fix is not suggested for top level property accessor
  • KT-17788 Kotlin Lint: "Surround with if()" quick fix corrupts code in case of destructuring declaration
  • KT-17890 [kotlin-android-extensions] Renaming layout file does not rename import
  • KT-18012 Kotlin Android Extensions generates @NotNull properties for views present in a configuration and potentially missing in another
  • KT-18545 Accessing to synthetic properties on smart casted Android components crashed compiler
Source form kotlin github page: https://github.com/JetBrains/kotlin/tree/1.1.4

#HappyCoding #ILoveKotlin

Ad Mob Integration in Kotlin

Firebase is a mobile platform that helps you quickly develop high-quality apps, grow an engaged user base, and earn more money. Since AdMob is now a part of Firebase, we've made it simpler to use AdMob along with other Firebase services such as Analytics.

Here is the simplest way of how to integrate admob in android using kotlin and firebase is very easy.

1. Create a android project in android studio
2. go to tools->Firebase and go to bottom admob details and click first option connect your app to firebase and if you successfully connected then following green ok button appears.

Now click add a banner ad to you app


3. Now click 2nd option ad admob to your app then you got following dialog box and click accept for changes.


and 
4. To put a banner ad in your app, add the following code to your layout file, including the Android Ads schema.


5. Now, you have to load the ad in the activity
Add code to the onCreate() class of this activity to load the ad.

// appId, you can find through the ad mob
MobileAds.initialize(this, resources.getString(R.string.app_id));

// bannar addval adRequest = AdRequest.Builder().build()
adView.loadAd(adRequest)

don't forget to import:


import kotlinx.android.synthetic.main.activity_main.*


6. you have to create ad unit from admob.com and add on string.xml, that has name banner_ad_unit_id.


If you want to add Interstitial Ad, then do following steps,

First you have create Interstitial ad unit in admob and save  interstitial_ad_unit_id  string.xml.

Inside the MainActivity.


internal lateinit var mInterstitialAd: InterstitialAd
internal lateinit var adRequest : AdRequest

want the onCreate method:

mInterstitialAd =  InterstitialAd(this)
mInterstitialAd.setAdUnitId(getString(R.string.interstitial_ad_unit_id));
requestNewInterstitial()


Create function requestNewInterstitial(),


private fun requestNewInterstitial() {
     adRequest = AdRequest.Builder().build()
     mInterstitialAd.loadAd(adRequest)
}


Don't forget to internet permission, otherwise you ad will not displayed in your app.

<uses-permission android:name="android.permission.INTERNET"></uses-permission>

Finally, Inside the button click


if (mInterstitialAd.isLoaded()) {
    mInterstitialAd.show();
} else {
    //go to second activity or do something
}

mInterstitialAd.adListener = object : AdListener() {
    override fun onAdClosed() {
        requestNewInterstitial()
         //go to second activity or do something
    }

    override fun onAdLoaded() {  
    }

    override fun onAdFailedToLoad(i: Int) {
        Log.w("AgeActivity", "onAdFailedToLoad:" + i)
    }
}


Now your both banner ad and  Interstitial Ad both will be displayed , just like screenshot below.






Download and fork project.

#HappyCoding!! and #ILoveKotlin

Share Preferences in Kotlin

Interface for accessing and modifying preference data returned by getSharedPreferences(String, int).
You can create a new shared preference file or access an existing one by calling one of two methods:
  • getSharedPreferences() — Use this if you need multiple shared preference files identified by name, which you specify with the first parameter. You can call this from any Context in your app.
  • getPreferences() — Use this from an Activity if you need to use only one shared preference file for the activity. Because this retrieves a default shared preference file that belongs to the activity, you don't need to supply a name.
Lets to it in kotlin:

First attempt to defined the shared preference and editor then put values on editor and apply for use.
What we have doing in MainActivity:

Now, get the value from shared preference in second activity using key.

Simple we can use for login section, where we can save username, password or remember password for any user.

Here is sample output screenshot:






Download full code and fork

#HappyCoding!!! and #IloveKotlin

How to get different way of alphabetical letter in Kotlin

Using collection in kotlin is very easy to loop over the list. Here I am presenting way of getting alphabetically letter from A to Z in different way in kotlin.





Following output above code:
Print A to Z
ABCDEFGHIJKLMNOPQRSTUVWXYZ
-------------------------
ABCDEFGHIJKLMNOPQRSTUVWXYZ
Print A to Z using With
-------------------------
Print A to Z using expression
ABCDEFGHIJKLMNOPQRSTUVWXYZ
-------------------------
print A to Z using apply
ABCDEFGHIJKLMNOPQRSTUVWXYZ
-------------------------
Print using buildString
ABCDEFGHIJKLMNOPQRSTUVWXYZ

 Happy Coding

#HappyCoding #ILoveKotlin #Android #KotlinLang #AndroidStudio