0

如何在android应用程序中默认选中“应用程序隐藏”复选框?

XML 代码 main.xml: http://pastebin.com/aPhyC7VS

java代码: http: //pastebin.com/wizn2a6h

我已经尝试将 main.xml "android:checked="false"" 修改为 android:checked="true" 但是在重建和安装应用程序之后,我再次取消选中了“应用程序隐藏”框。

    </TableRow>
    <TableRow>
        <CheckBox android:textSize="16.0dip" android:textColor="#ffffffff" android:id="@id/chBox_pref_appHide" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="10.0dip" android:checked="false" android:text="@string/chBox_pref_appHide" />
    </TableRow>

如何解决这个问题?

4

1 回答 1

0

改变,

android:checked="false"

android:checked="true"
于 2013-03-18T19:16:20.733 回答