私はLinearLayout
いくつかButtons
とを持っていTextViews
ます。赤から白、赤など、一定の間隔で背景を点滅させたいです。現在、このコードを試していますが、nullポインター例外が発生します。
LinearLayout ll = (LinearLayout) findViewById(R.layout.activity_main);
Animation anim = new AlphaAnimation(0.0f, 1.0f);
anim.setDuration(50);
anim.setStartOffset(20);
anim.setRepeatMode(Animation.REVERSE);
anim.setRepeatCount(Animation.INFINITE);
ll.startAnimation(anim); // shows null pointer exception at this line
どこが間違っているのか助けてください。