android连连看游戏中,怎么样把飘动的小图片删除,下面有部分代码,我也不清楚是不是这段代码

publicclassWelcomeActivityextendsActivity{privateButtonstartBtn;privateButtonexitBtn;... public class WelcomeActivity extends Activity{
private Button startBtn;
private Button exitBtn;
private Button aboutBtn;
private Button setBtn;
private Button blueToothBtn;
private TextView logo;
private NotificationManager nMgr;

private boolean music = false;
private RefreshHandler mRedrawHandler;
private int[] count = {0,0,0,0,0};
private int[] sizes = {10,10,10,10,10};

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
//去除程序的标题栏
super.requestWindowFeature(Window.FEATURE_NO_TITLE);
super.setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);
//去除系统消息提示栏,游戏全屏
super.getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);
setContentView(R.layout.begin);
logo = (TextView)findViewById(R.id.logo);
AnimationSet animation = (AnimationSet) AnimationUtils.loadAnimation(getApplicationContext(), R.anim.welcome);
Interpolator i = new AccelerateDecelerateInterpolator();
animation.setInterpolator(i);
logo.startAnimation(animation);
animation.setAnimationListener(new AnimationListener() {
public void onAnimationStart(Animation animation) {}
public void onAnimationRepeat(Animation animation) {}
@Override
public void onAnimationEnd(Animation animation) {
setContentView(R.layout.in);
startBtn = (Button) findViewById(R.id.startBtn);
exitBtn = (Button) findViewById(R.id.exitBtn);
setBtn = (Button) findViewById(R.id.setBtn);
aboutBtn = (Button) findViewById(R.id.aboutBtn);
blueToothBtn = (Button) findViewById(R.id.blueToothBtn);
mRedrawHandler = new RefreshHandler();
mRedrawHandler.sleep(50);

/**
* 点击开始按钮,跳转到游戏主界面
*/
startBtn.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
startBtn.setBackgroundResource(R.drawable.color_bkg_3);
Intent intent = new Intent();
Bundle bundle = new Bundle();
bundle.putBoolean("music", music);
intent.putExtras(bundle);
intent.setClass(WelcomeActivity.this,LLKanActivity.class);
WelcomeActivity.this.startActivity(intent);
}
});

那个漂浮的小图片是logo.png,等级不够,不能上传图片,希望有高手能指导一下
展开
 我来答
渠景中8W
2012-05-09 · TA获得超过544个赞
知道小有建树答主
回答量:369
采纳率:100%
帮助的人:291万
展开全部
将 R.layout.begin 里面的 ImageView 中src 或者 背景值删除
更多追问追答
追问

删除哪句
追答
额 不是  你找到 @drawable/logo 这一行删除即可
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式