我是 android 开发的新手,我正在尝试将一个添加ToggleButton
到我的第一个 android 项目中。并且有一个问题让它像我想要的那样工作。
这是我的ToggleButton
:
<ToggleButton
android:id="@+id/toggle1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:enabled="true"
android:textOff="Off"
android:textOn="On" />
这是我的活动课:
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_toggle);
addListenerOnButton();
}
public void addListenerOnButton() {
togglelocation = (ToggleButton) findViewById(R.id.toggle1);
togglelocation.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
}
});
}
问题是当我单击切换按钮时,屏幕上什么也没有发生,而我期望切换按钮在开/关之间切换。
isChekced()
当我调试时,真/假之间的值变化。
但在屏幕层面上没有任何改变。我不知道我错过了什么。
编辑:
我认为这与我的设备平板电脑华为有关。我只是在虚拟设备中测试它,它就像一个魅力!!!!