moved IntegerListPreference to apg.ui.widget

This commit is contained in:
Thialfihar 2010-08-17 22:03:56 +00:00
parent 446f4b493d
commit fc0ae774cd
3 changed files with 7 additions and 6 deletions

View File

@ -27,7 +27,7 @@
android:entryValues="@array/language_values"
android:dialogTitle="@string/label_language" />
<org.thialfihar.android.apg.IntegerListPreference
<org.thialfihar.android.apg.ui.widget.IntegerListPreference
android:persistent="false"
android:key="passPhraseCacheTtl"
android:entries="@array/pass_phrase_cache_ttl_entries"
@ -44,22 +44,22 @@
<PreferenceCategory
android:title="@string/section_defaults">
<org.thialfihar.android.apg.IntegerListPreference
<org.thialfihar.android.apg.ui.widget.IntegerListPreference
android:persistent="false"
android:key="defaultEncryptionAlgorithm"
android:title="@string/label_encryptionAlgorithm" />
<org.thialfihar.android.apg.IntegerListPreference
<org.thialfihar.android.apg.ui.widget.IntegerListPreference
android:persistent="false"
android:key="defaultHashAlgorithm"
android:title="@string/label_hashAlgorithm" />
<org.thialfihar.android.apg.IntegerListPreference
<org.thialfihar.android.apg.ui.widget.IntegerListPreference
android:persistent="false"
android:key="defaultMessageCompression"
android:title="@string/label_messageCompression" />
<org.thialfihar.android.apg.IntegerListPreference
<org.thialfihar.android.apg.ui.widget.IntegerListPreference
android:persistent="false"
android:key="defaultFileCompression"
android:title="@string/label_fileCompression" />

View File

@ -22,6 +22,7 @@ import java.util.Vector;
import org.bouncycastle2.bcpg.HashAlgorithmTags;
import org.bouncycastle2.openpgp.PGPEncryptedData;
import org.thialfihar.android.apg.ui.widget.IntegerListPreference;
import android.content.Intent;
import android.os.Bundle;

View File

@ -14,7 +14,7 @@
* the License.
*/
package org.thialfihar.android.apg;
package org.thialfihar.android.apg.ui.widget;
import android.content.Context;
import android.preference.ListPreference;