
Set color frome Resourse on Activity in android
Send data one activity to another Activity by using Intent
acTextIntent.putExtra("PrType",btnName);
startActivity(intent);
Receive data one activity to another Activity by using Intent
Set received data on views
title.setText(PrName);Remove any kind of white space ,alphabet letter,extra sign in string by using this code
String replceWith = replceWith.replace(" ",ch);
Send And Receive Multiple Data Using Intent;
myIntent.putExtra("key", myEditText1.Text.toString());
myIntent.putExtra("key1", myEditText2.Text.toString());
myIntent.putExtra("key2", myEditText3.Text.toString());
startActivity(myIntent);
String text = myIntent.getStringExtra("key1");
String text1 = myIntent.getStringExtra("key2");
String text3 = myIntent.getStringExtra("key");
Set Image using glide library
.diskCacheStrategy(DiskCacheStrategy.ALL)
.placeholder(R.drawable.placeholder)
.error(R.drawable.imagenotfound)
.into(brImage);;
✅ Tags
Android Coding