gpt4 book ai didi

android - 复选框加载速度是否比开关慢?

转载 作者:行者123 更新时间:2023-11-29 23:13:32 27 4
gpt4 key购买 nike

我有一个带有 34 个 SwitchActivity,加载 Activity 没问题。

但是,当我尝试将 Switch 替换为 CheckBox 时, Activity 需要整整一秒才能加载。

这是 CheckBox 的普遍问题还是我的代码不合适?

我的 Activity 代码,已简化(仅显示 1 个 CheckBox)

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
}
}
}
}
}

我的复选框的 XML 代码:

<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 中创建 52 个开关或复选框会给 UI 渲染带来负担。您应该使用 RecyclerView 重用 View ,这样渲染时间会非常短。

关于android - 复选框加载速度是否比开关慢?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55673861/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com