Android 手机和平板电脑上的复选框默认行为不同
Android checkbox default behaviour is different on phones and tablets
我在我的应用程序中使用标准 android 复选框。
<CheckBox
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="top"
android:textColor="@color/white"
android:textSize="12sp" />
复选框的默认选中行为在手机中显示,但在平板电脑中保持未选中状态。我在这里遗漏了什么吗?
你可以使用
android:checked="true"
我在我的应用程序中使用标准 android 复选框。
<CheckBox
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="top"
android:textColor="@color/white"
android:textSize="12sp" />
复选框的默认选中行为在手机中显示,但在平板电脑中保持未选中状态。我在这里遗漏了什么吗?
你可以使用
android:checked="true"