我有一個LinearLayout
幾個Buttons
和TextViews
。我希望我的背景能夠定時閃爍,例如從紅色變成白色變成紅色,等等。現在,我正在嘗試這個代碼,但它給了我一個空指針異常。閃爍背景
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
請幫我我在哪裏錯了?
請附上logcat的。 – 2013-03-11 04:52:43