Skipped 181 frames! The application may be doing too much work on its main thread
that appears when i run the code and click on the activity ... why is that appearing and how to get rid of it? here is my code
public class MainActivity extends AppCompatActivity {
public void Dropin(View v){
ImageView Counter = (ImageView)v;
Counter.setTranslationY(-1000);
Counter.setImageResource(R.drawable.red);
Counter.animate().translationYBy(1000f).setDuration(300);
}
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
}