问题标签 [oncheckedchanged]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
android - 可以在没有交互的情况下调用 onCheckedChanged 方法吗?
我有一个习惯ListView
,点击一个项目会触发一个新的Activity
. 的每一行ListView
都有一个CheckBox
和一个TextView
。
这是getView
我自定义的方法ListView
:
当onCheckedChanged
从另一个 Activty 返回时调用 ,而没有可能的用户交互来实际检查任何内容。
关键是它曾经工作得很好,并没有真正改变任何东西。我读过这是一个错误,但我真的不敢相信。
它总是在相同的两个项目上调用方法ListView
。他们可以以checkedChange=true
某种方式设置吗?
android - 当复选框更改状态时如何做某事?
这是我的代码:
我想要做的是“检测”其中一个被选中,然后将另外两个设置为“禁用”,这样用户一次只能选择一个。我尝试使用“.setOnCheckedChangeListener”,但我不能这样做,有人可以帮我一些代码吗?非常感谢你们!
android - OnCheckedChangeListener & OnClickListener in android -- Button half-works on first click, finishes on second click?
Well... here's a problem it looks like I'm not the first to experience looking through other questions, however I can't find one that's Android-specific (others are C++ or straight java with different scenarios).
I have a calculator that determines your fuel mileage needs with given user inputs. The thing I'm adding now is a "burnoff" aspect where you can calculate the weight lost over the course of the race. Before adding the weight/burnoff element, everything worked fine.
Now, everything calculates normally except the weight on the first click.
On the second click (and subsequent clicks) it calculates properly. I suspect it has something to do with the switch statement and its location, but I could be wrong.... and even if I'm not, I'm not sure how to change it.
Looking for help on getting it all functioning properly on the first click. Thanks!
EDIT: The non-exception Toast text I put in as a debugger to determine if it was a math issue or what in the code. It pops up with "0.0" on the first click, then either "6.2" or "6.6" on subsequent clicks.
c# - 选中的单选按钮已更改事件触发两次
请阅读我的问题,它不是重复的问题。
我在 Windows 窗体上有三个单选按钮,所有这些按钮都关联了常见的“CheckedChanged”事件。当我单击这些单选按钮中的任何一个时,它会触发两次“CheckedChanged”事件。
这是我的代码:
我插入了断点,并且此事件中的整个代码迭代了两次。请告诉我为什么它会这样?
asp.net - ASP.NET:当我“取消选中”控件时,为什么我的 CheckedChanged 事件不执行?
我有一个复选框,它是中继器的一部分。当我选中该框和取消选中该框时,我试图让该复选框的 checkedchanged 事件发生。该事件目前仅在我选中该框时触发,但是……当我也取消选中时不会触发。我将在下面发布一些代码,希望有人可以引导我朝着正确的方向前进。谢谢!
将处理程序添加到中继器复选框控件
我的 CheckedChanged 处理程序事件
ASPX 文件复选框声明
oncheckedchanged - RadioGroup.setOnCheckedChangeListener(this) 导致 NullPointerException
我来自德国,是使用 java 和 Android 编程的新手。在我的第一个应用程序中,我有 2 个页面。第一页(aktivity_main.xml)此时是空的。在那里,我想建立一个listView。当我进入菜单并单击“Hinzufügen”(--> 表示英语中的“添加”)时,第二页(mypage)打开。
在此,我可以输入我的输入。这里开始我的问题。(我搜索了几天,但不管我怎么做,它都不起作用!)当我在无线电组中更改状态时,文本(TextDefinitionWert:“Bitte geben Sie Ihren gewünschten Maximalwert ein:”) 应该更改为另一个文本,保存在字符串中.xml。但它不起作用。只有一个NullPointerException
这是我的MainActivity.Java代码:
}
(因为我是新来的,所以不能发图片。)
LogCat 是这样的:
我希望你能帮助我。我不知道为什么会这样。
asp.net - OnCheckedChanged 嵌套列表视图控件
我有以下嵌套列表视图...
我像这样抓住单选按钮 OnCheckedChanged ......
我遇到的问题是“lvwAnswers”什么都没有。我猜我没有正确地做我的 findcontrol。
非常感谢任何帮助。
android - 带有切换按钮的 Radiogroup 无法正常工作
我试图用四个切换按钮实现一个无线电组。期望的行为是典型的单选组行为:一个按钮被预选,如果用户点击另一个按钮,前一个按钮被取消选择,而新的按钮被选中。如果用户再次单击选定的按钮,则不会发生任何事情,因为不允许选择任何按钮。这就是我遇到问题的地方。我遵循了这个问题的解决方案:Android: How to get a radiogroup with togglebuttons?
不幸的是,用户仍然能够取消选择活动按钮。我怎样才能防止这种情况?
这是我的代码:
ToggleButtons 的 onClick 侦听器:
我的自定义 OnCheckedChangeListener:
这里是我添加监听器的地方:(它在 onFinishInflate 方法中)
如果有人可以向我指出解决方案,那就太好了!
android - setText 在检查更改?
我正在尝试制作一个简单的文字游戏,但我什至无法完成第一步。布局中有一个文本视图和 3 个单选按钮。我想在您单击其中一个单选按钮时更改文本并确定应用程序将使用什么文本,我有一个位置 int。示例:我选择按钮一:如果位置 = 1,则将设置文本设置为文本 2。如果位置 = 9,则将文本设置为 11,依此类推。这是代码:
如果我更改行“text.setText(“这是文本 1”);” 到别的东西。例如 setcontentview 然后一切正常。但是当我想更改文本时,它会在我选择单选按钮的那一刻崩溃。
android - 打开自定义对话框的开关
我有一个打开自定义对话框的开关。在 onCheckedChanged() 方法中,我实例化了表示对话框的类并调用方法 show()。问题是对话框仅在 onCheckedChanged() 结束后打开。我尝试在对话框类的构造函数中调用 show() 但同样的事情发生了。
该对话框供用户设置提醒的时间和日期。在对话框中还有三个按钮“OK”、“Cancel”和“Reset”。问题是,如果用户单击“取消”,我想将开关更改为“关闭”,但对话框仅在 onCheckedChanged() 结束后打开,当我单击“取消”时,对话框刚刚关闭并且开关保持“在”。
对话类:
}
对话框的xml:
带有开关按钮的活动:
}