From 1624cd8349876f267e2cb4d37341b5cc52b25f98 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dominik=20Sch=C3=BCrmann?= Date: Thu, 23 Oct 2014 23:31:50 +0200 Subject: Start safe slinger activity --- .../keychain/ui/SafeSlingerActivity.java | 43 ++++++++++++++++++++++ .../src/main/res/layout/safe_slinger_activity.xml | 26 +++++++++++++ 2 files changed, 69 insertions(+) create mode 100644 OpenKeychain/src/main/java/org/sufficientlysecure/keychain/ui/SafeSlingerActivity.java create mode 100644 OpenKeychain/src/main/res/layout/safe_slinger_activity.xml (limited to 'OpenKeychain/src/main') diff --git a/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/ui/SafeSlingerActivity.java b/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/ui/SafeSlingerActivity.java new file mode 100644 index 000000000..b8e3dd590 --- /dev/null +++ b/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/ui/SafeSlingerActivity.java @@ -0,0 +1,43 @@ +/* + * Copyright (C) 2014 Dominik Schürmann + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +package org.sufficientlysecure.keychain.ui; + +import android.os.Bundle; +import android.support.v7.app.ActionBarActivity; +import android.widget.NumberPicker; + +import org.sufficientlysecure.keychain.R; + + +public class SafeSlingerActivity extends ActionBarActivity { + + @Override + public void onCreate(Bundle savedInstanceState) { + super.onCreate(savedInstanceState); + + setContentView(R.layout.safe_slinger_activity); + + NumberPicker numberPicker = (NumberPicker) findViewById(R.id.safe_slinger_number_picker); + + numberPicker.setDisplayedValues(new String[]{"2","3","4","5","6","7","8","9","10"}); + numberPicker.setValue(0); +// numberPicker.setMaxValue(8); +// numberPicker.setMinValue(0); + } + +} diff --git a/OpenKeychain/src/main/res/layout/safe_slinger_activity.xml b/OpenKeychain/src/main/res/layout/safe_slinger_activity.xml new file mode 100644 index 000000000..46d9237ea --- /dev/null +++ b/OpenKeychain/src/main/res/layout/safe_slinger_activity.xml @@ -0,0 +1,26 @@ + + + + + + + + + + + -- cgit v1.2.3