textinputlayout android studio code example

Example 1: viewwillappear android

Activity.onResume

Example 2: text input layout dependency

compile 'com.android.support:design:25.3.1'

Example 3: onbackpressed android

@Override
public void onBackPressed() {
    new AlertDialog.Builder(this)
        .setTitle("Really Exit?")
        .setMessage("Are you sure you want to exit?")
        .setNegativeButton(android.R.string.no, null)
        .setPositiveButton(android.R.string.yes, new OnClickListener() {

            public void onClick(DialogInterface arg0, int arg1) {
                WelcomeActivity.super.onBackPressed();
            }
        }).create().show();
}

Tags:

Java Example