我研究了所有可能的答案,发现了一些可行的方法:
int[] tabelazdjec={R.drawable.pic2,R.drawable.pic3};
LinearLayout mylay=(LinearLayout)findViewById(R.id.mylay);
@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
setContentView(R.layout.yess);
Thread timer = new Thread(){
public void run()
{
for(int i=0;i<tabelazdjec.length;i++)
{
try
{
mylay.setBackgroundResource(tabelazdjec[i]);
sleep(500);
}
catch(Exception e)
{
e.printStackTrace();
}
}}
};
timer.start();
它没有。错误出现在我声明 LinearLayout 变量的第二行。如果我将声明移到 try{}catch{} 部分,应用程序会运行但 try{} 不会执行,所以它肯定是这一行。xml文件如下:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:id="@+id/mylay"
android:layout_height="match_parent"
android:orientation="vertical"
android:background="@drawable/pic1" >
</LinearLayout>
抱歉,如果这个问题看起来微不足道,我已经花了几个小时盯着那条线,找不到任何问题。可能是我瞎了...