为了账号安全,请及时绑定邮箱和手机立即绑定

求問setBackgroundResource()一直錯誤 有勞幫解答

一直跳錯  有勞幫忙看看了!  謝謝

57a1d162000194c805000260.jpg

57a1d1630001a47905000108.jpg

=================

package com.example.user.myapplication;

import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.widget.CompoundButton;
import android.widget.ImageView;
import android.widget.ToggleButton;

public class MainActivity extends AppCompatActivity implements CompoundButton.OnCheckedChangeListener {
   private ToggleButton tv;
   private ImageView    img;
   private boolean isChecked;

   @Override
   protected void onCreate(Bundle savedInstanceState) {
       super.onCreate(savedInstanceState);
       setContentView(R.layout.activity_main);

      tv = (ToggleButton) findViewById(R.id.toggleButton);
      img=(ImageView) findViewById(R.id.imageView1);


       tv.setOnCheckedChangeListener(this);
   }

   @Override
   public void onCheckedChanged(CompoundButton compoundButton, boolean b) {
       img.setBackgroundResource(isChecked?R.drawable.on:R.drawable.off);
   }
}


正在回答

1 回答

在drawable里面放两张图片,分别命名为on和off

1 回复 有任何疑惑可以回复我~
#1

qq_詁詁木_0 提问者

謝謝 鵬哥 已經解決了!! public class MainActivity extends AppCompatActivity implements CompoundButton.OnCheckedChangeListener { ======== AppCompatActivity 也要換掉 不然 不能換圖片
2016-08-04 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
Android攻城狮的第一门课(入门篇)
  • 参与学习       312584    人
  • 解答问题       4633    个

想快速掌握Android应用开发基础,选择学习这门课程就对了。

进入课程

求問setBackgroundResource()一直錯誤 有勞幫解答

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信