Back to project page android-lockpattern.
The source code is released under:
Apache License
If you think the Android project android-lockpattern listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/* * Copyright (C) 2007 The Android Open Source Project *//from ww w. j av a 2 s .c om * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.android.internal.widget; import java.util.List; import com.google.android.collect.Lists; /** * Utilities for the lock pattern and its settings. */ public class LockPatternUtils { /** * Deserialize a pattern. * * @param string * The pattern serialized with {@link #patternToString} * @return The pattern. */ public static List<LockPatternViewEx.Cell> stringToPattern(String string) { List<LockPatternViewEx.Cell> result = Lists.newArrayList(); final byte[] bytes = string.getBytes(); for (int i = 0; i < bytes.length; i++) { byte b = bytes[i]; result.add(LockPatternViewEx.Cell.of(b / 3, b % 3)); } return result; } /** * Serialize a pattern. * * @param pattern * The pattern. * @return The pattern in string form. */ public static String patternToString(List<LockPatternViewEx.Cell> pattern) { if (pattern == null) { return ""; } final int patternSize = pattern.size(); byte[] res = new byte[patternSize]; for (int i = 0; i < patternSize; i++) { LockPatternViewEx.Cell cell = pattern.get(i); res[i] = (byte) (cell.getRow() * 3 + cell.getColumn()); } return new String(res); } }