From 9fb13bbc47c05ed50c0df7b44d9862c865a7d07b Mon Sep 17 00:00:00 2001 From: Dan Galpin Date: Sun, 24 May 2015 15:09:21 -0700 Subject: [PATCH] Created a custom preference with a custom attribute. --- .../app/LocationEditTextPreference.java | 40 +++++++++++++++++++ app/src/main/res/values/attrs.xml | 21 ++++++++++ app/src/main/res/xml/pref_general.xml | 9 +++-- 3 files changed, 67 insertions(+), 3 deletions(-) create mode 100644 app/src/main/java/com/example/android/sunshine/app/LocationEditTextPreference.java create mode 100644 app/src/main/res/values/attrs.xml diff --git a/app/src/main/java/com/example/android/sunshine/app/LocationEditTextPreference.java b/app/src/main/java/com/example/android/sunshine/app/LocationEditTextPreference.java new file mode 100644 index 0000000..5ac2f94 --- /dev/null +++ b/app/src/main/java/com/example/android/sunshine/app/LocationEditTextPreference.java @@ -0,0 +1,40 @@ +/* + * Copyright (C) 2015 The Android Open Source Project + * + * 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.example.android.sunshine.app; + +import android.content.Context; +import android.content.res.TypedArray; +import android.preference.EditTextPreference; +import android.util.AttributeSet; + +public class LocationEditTextPreference extends EditTextPreference { + static final private int DEFAULT_MINIMUM_LOCATION_LENGTH = 2; + private int mMinLength; + + public LocationEditTextPreference(Context context, AttributeSet attrs) { + super(context, attrs); + TypedArray a = context.getTheme().obtainStyledAttributes( + attrs, + R.styleable.LocationEditTextPreference, + 0, 0); + try { + mMinLength = a.getInteger(R.styleable.LocationEditTextPreference_minLength, DEFAULT_MINIMUM_LOCATION_LENGTH); + } finally { + a.recycle(); + } + } +} + diff --git a/app/src/main/res/values/attrs.xml b/app/src/main/res/values/attrs.xml new file mode 100644 index 0000000..9332d8a --- /dev/null +++ b/app/src/main/res/values/attrs.xml @@ -0,0 +1,21 @@ + + + + + + + diff --git a/app/src/main/res/xml/pref_general.xml b/app/src/main/res/xml/pref_general.xml index 7fe52ad..a8b175b 100644 --- a/app/src/main/res/xml/pref_general.xml +++ b/app/src/main/res/xml/pref_general.xml @@ -14,16 +14,19 @@ See the License for the specific language governing permissions and limitations under the License. --> - - + android:singleLine="true" + custom:minLength="3"/>