我有一个Switch
和34 Switch
,并且可以加载活动。
但是,当我尝试将CheckBox
替换为CheckBox
时,该活动将花费一整秒钟的时间。
这是CheckBox
的普遍问题吗?还是我的代码不合适?
我的活动代码已简化(仅显示1个public class Myactivity extends AppCompatActivity {
CheckBox MyCheckbox1;
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_myactivity);
MyCheckbox1 = findViewById(R.id.mycheck1);
Mycheckbox1.OnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
@Override
onCheckedChanged(CompoundButton view, boolean isChecked) {
if(((CompoundButton) view).isChecked()){
//do something
}else{
//do something else
}
}
}
}
}
)
<CheckBox
android:id="@+id/mycheck1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/Option1"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toTopOf="parent" />
我的复选框XML代码:
{{1}}
答案 0 :(得分:0)
我认为在XML中创建52个开关或复选框会给UI渲染带来负担。您应该使用RecyclerView来重用视图,这样将花费更少的时间来渲染。