坚持使用日志标记

时间:2012-09-14 13:42:14

标签: android

我是Android的新手,因此只需要在示例中学习和玩游戏。目前我正在研究通过计时器任务生成图像的示例,我陷入困境,我真的需要专家建议。下面是代码和使用Log.i的位置(" MARKER"," * ** ")... ..有些人可以告诉我为什么我在行的最后一部分出现错误????

    @Override
    public void run() {
        // TODO Auto-generated method stub
        Log.i(“MARKER”,”******************************************”);

        //int numViews = container.getChildCount(); 

        ImageView toAdd = new ImageView(ImagePlayActivity.this);        
        Drawable imgContent = ImagePlayActivity.this.getResources().getDrawable(R.drawable.icon);
        toAdd.setImageDrawable(imgContent);
        toAdd.setTag(“img”+counter++);

        Random rndGen = new Random();

      LayoutParams lp = new LayoutParams(LayoutParams.WRAP_CONTENT,LayoutParams.WRAP_CONTENT,rndGen.nextInt(300),rndGen.nextInt(300));
        toAdd.setLayoutParams(lp);
        toAdd.setBackgroundColor(Color.TRANSPARENT);

        AlphaAnimation anim = new AlphaAnimation(0, 1);
        anim.setDuration(1000);
        container.addView(toAdd);
        //container.invalidate(); 
        toAdd.startAnimation(anim);



    }
};

先谢谢。

1 个答案:

答案 0 :(得分:1)

您收到错误是因为您使用的是而不是"。 Java语言无法将识别为包含字符串等的一组引号。请尝试将该行更改为:

Log.i("MARKER","******************************************");