马上就要过年了,这几天公司的人越来越少,而我打算坚守到最后一天,虽然事情比较少,但也能稍微自己看点东西,充充电。然而,项目发布的 App 在华为渠道被拒了,原因是:在登录页的隐私协议,不能默认勾选上。然后我看到了这样的代码:1
2
3
4
5
6
7
8
9
10
11
12<CheckBox
android:id="@+id/check_box"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:button="@null"
android:checked="true"
android:drawableLeft="@drawable/account__protocol_agree"
android:drawablePadding="7dp"
android:enabled="false"
android:text="同意"
android:textColor="#333333"
android:textSize="12dp" />