为什么点击后文字变成不开心了,但图片却不变化?
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="你今天开心吗?"/>
<ImageView
android:id="@+id/imageView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/happy"
/>
<ToggleButton
android:id="@+id/tb"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:checked="true"
android:textOn="开心"
android:textOff="不开心"
/>
</LinearLayout>
package com.yangxj.togglebutton;
import android.app.Activity;
import android.hardware.SensorEventListener;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.ImageView;
import android.widget.RadioGroup;
import android.widget.RadioGroup.OnCheckedChangeListener;
import android.widget.Toast;
import android.widget.ToggleButton;
public class MainActivity extends Activity {
private ImageView iv;
private ToggleButton tb;
private toggleButtonListener tbl;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_togglebutton);
initview();
setListener();
}
private void setListener() {
// TODO Auto-generated method stub
tb.setOnClickListener(tbl);
}
private void initview() {
// 初始化控件
iv = (ImageView) findViewById(R.id.imageView);
tb = (ToggleButton) findViewById(R.id.tb);
}
class toggleButtonListener implements OnClickListener {
@Override
public void onClick(View v) {
// TODO Auto-generated method stub
if (tb.isChecked()) {
Toast.makeText(MainActivity.this, tb.getText().toString(), 100).show();
iv.setImageResource(R.drawable.happy);
} else {
Toast.makeText(MainActivity.this, tb.getText().toString(), 100).show();
iv.setImageResource(R.drawable.unhappy);
}
}
}
}
正在回答 回答被采纳积分+1
- 参与学习 人
- 提交作业 5461 份
- 解答问题 7238 个
此次推出的专题为Android攻城狮培养计划的第一部分语法与界面基础篇,将带大家从0开始学习Android开发。
了解课程
恭喜解决一个难题,获得1积分~
来为老师/同学的回答评分吧
0 星