作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我尝试在 SwitchCompat
上设置文本,但它不起作用。它只在第一次工作。但是当您尝试更改文本时(例如,当单击按钮时),它不起作用。
例如:
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
final SwitchCompat switchCompat = (SwitchCompat)findViewById(R.id.switch_test);
switchCompat.setTextOn("Yes");
switchCompat.setTextOff("No");
switchCompat.setShowText(true);
Button buttonTest = (Button)findViewById(R.id.button_test);
buttonTest.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
switchCompat.setTextOn("YOO");
switchCompat.setTextOff("NAH");
//switchCompat.requestLayout(); //tried to this but has no effect
//switchCompat.invalidate(); //tried to this but has no effect
}
});
}
您会看到文本保持为是 和否。我尝试调用 requestLayout()
和 invalidate()
但没有成功。有什么想法吗?
最佳答案
问题是,SwitchCompat
在设计时并未考虑到这种情况。它有私有(private)字段mOnLayout
和mOffLayout
,计算一次并且not recomputed later更改文本时。
因此,您必须明确地将它们置空,以便文本更改以启动要重新创建的布局。
buttonTest.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
try {
Field mOnLayout = SwitchCompat.class.getDeclaredField("mOnLayout");
Field mOffLayout = SwitchCompat.class.getDeclaredField("mOffLayout");
mOnLayout.setAccessible(true);
mOffLayout.setAccessible(true);
mOnLayout.set(switchCompat, null);
mOffLayout.set(switchCompat, null);
} catch (NoSuchFieldException e) {
e.printStackTrace();
} catch (IllegalAccessException e) {
e.printStackTrace();
}
switchCompat.setTextOn("YOO");
switchCompat.setTextOff("NAH");
}
});
结果:
关于java - SwitchCompat setTextOn() 和 setTextOff() 在运行时不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45521819/
我尝试在 SwitchCompat 上设置文本,但它不起作用。它只在第一次工作。但是当您尝试更改文本时(例如,当单击按钮时),它不起作用。 例如: protected void onCreate(Bu
接下来的两个语句生成了正确的左下方屏幕: if(isChecked) sw.setText ("This switch is: On");
我是一名优秀的程序员,十分优秀!