• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

frameworks/base


Commit MetaInfo

Revisiondfb6c37391576c3011712164f0fdf5a1e5b9d7a3 (tree)
Time2010-11-26 15:36:07
Authorkwok.wong@live.nl <kwok.wong@live...>
CommiterChih-Wei Huang

Log Message

Added setting to disable screen lock

Change Summary

Incremental Difference

--- a/api/current.xml
+++ b/api/current.xml
@@ -136820,6 +136820,17 @@
136820136820 visibility="public"
136821136821 >
136822136822 </field>
136823+<field name="LOCK_PATTERN_DISABLE"
136824+ type="java.lang.String"
136825+ transient="false"
136826+ volatile="false"
136827+ value="&quot;lock_pattern_disable_pattern&quot;"
136828+ static="true"
136829+ final="true"
136830+ deprecated="not deprecated"
136831+ visibility="public"
136832+>
136833+</field>
136823136834 <field name="LOCK_PATTERN_ENABLED"
136824136835 type="java.lang.String"
136825136836 transient="false"
--- a/core/java/android/provider/Settings.java
+++ b/core/java/android/provider/Settings.java
@@ -1187,6 +1187,11 @@ public final class Settings {
11871187 "bluetooth_discoverability_timeout";
11881188
11891189 /**
1190+ * Whether lock pattern is disable as user enters (0 = false, 1 = true)
1191+ */
1192+ public static final String LOCK_PATTERN_DISABLE = "lock_pattern_disable_pattern";
1193+
1194+ /**
11901195 * @deprecated Use {@link android.provider.Settings.Secure#LOCK_PATTERN_ENABLED}
11911196 * instead
11921197 */