在Android中,可以通过以下步骤来启用或禁用动态创建的开关:
<EditText
android:id="@+id/editText"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<Switch
android:id="@+id/switchButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
EditText editText = findViewById(R.id.editText);
Switch switchButton = findViewById(R.id.switchButton);
switchButton.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
@Override
public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
editText.setEnabled(isChecked);
}
});
这样,当用户切换Switch的状态时,EditText的可编辑状态将相应地改变。
关于腾讯云相关产品和产品介绍链接地址,由于不能提及具体品牌商,建议您访问腾讯云官方网站(https://cloud.tencent.com/)以获取相关信息。
领取专属 10元无门槛券
手把手带您无忧上云