Actually I am trying to fade out one image and bring another one as a type of animation
public void fade(View view){
ImageView harsh = findViewById(R.id.harshView);
harsh.animate().alpha(0f).setDuration(2000);
ImageView diksha= findViewById(R.id.dikshaView);
diksha.animate().alpha(1f).setDuration(2000);
}
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}