toggleButton没有图
我在xml文件中写了ToggleButton就是在显示中没有图,代码如下
<> <> </> </> </> </> </>
正在回答
目前无法看到代码,建议你把代码帖到编辑框,全选后,选择一下代码语言进行代码格式。
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.example.timer.togglebutton.MainActivity">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<TextView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="你今天开心嘛?"/>
<ToggleButton
android:id="@+id/tb"
android:layout_marginTop="120dp"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#cccccc "
android:checked="true"
android:textOff="开心"
android:textOn="不开心"/>
<ImageView
android:id="@+id/IV"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/timer3"
/>
</LinearLayout>
</android.support.constraint.ConstraintLayout>
MainActivity
package com.example.timer.togglebutton;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.ImageView;
import android.widget.Toast;
import android.widget.ToggleButton;
public class MainActivity extends AppCompatActivity {
private ToggleButton toggleButton;
private ImageView imageView;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
toggleButton=(ToggleButton)this.findViewById(R.id.tb);
imageView=(ImageView)this.findViewById(R.id.IV);
toggleButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
if(toggleButton.isChecked()){
Toast.makeText(MainActivity.this,toggleButton.getText().toString(),
1).show();
imageView.setImageResource(R.drawable.timer3);
}else {
Toast.makeText(MainActivity.this,toggleButton.getText().toString(),
1).show();
imageView.setImageResource(R.drawable.timer4);
}
}
});
}
}
- 参与学习 504 人
- 提交作业 1003 份
- 解答问题 1044 个
本专题是专为有Java语言基础想入坑Android开发的同学们准备的。从AndroidUI基础一直到网络,数据存储,一步到位入门Android开发。如果你会Java,那就不要犹豫了~ ~
了解课程
恭喜解决一个难题,获得1积分~
来为老师/同学的回答评分吧
0 星