Back to project page gnucash-android.
The source code is released under:
Apache License
If you think the Android project gnucash-android 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) 2014 Oleksandr Tyshkovets <olexandr.tyshkovets@gmail.com> *//from w w w. j a v a 2 s . c o m * 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 org.gnucash.android.ui.passcode; import android.content.Intent; import android.os.Bundle; import android.widget.TextView; import android.widget.Toast; import com.actionbarsherlock.app.SherlockFragmentActivity; import org.gnucash.android.R; import org.gnucash.android.ui.UxArgument; /** * Activity for entering and confirming passcode * @author Oleksandr Tyshkovets <olexandr.tyshkovets@gmail.com> */ public class PasscodePreferenceActivity extends SherlockFragmentActivity implements KeyboardFragment.OnPasscodeEnteredListener { private boolean reenter = false; private String passcode; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.passcode_lockscreen); } @Override public void onPasscodeEntered(String pass) { if (reenter) { if (passcode.equals(pass)) { setResult(RESULT_OK, new Intent().putExtra(UxArgument.PASSCODE, pass)); finish(); } else { Toast.makeText(this, R.string.toast_invalid_passcode_confirmation, Toast.LENGTH_LONG).show(); } } else { passcode = pass; reenter = true; ((TextView) findViewById(R.id.passcode_label)).setText(R.string.toast_confirm_passcode); Toast.makeText(this, R.string.toast_confirm_passcode, Toast.LENGTH_SHORT).show(); } } }