/*
* This file is part of andExplorer, android.ovhoo.com
* Copyright (C) 2007 Mohamed ZALIM <mzalim@ovhoo.com>
*
* andExplorer 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.
*
* andExplorer 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 <http://www.gnu.org/licenses/gpl.html>.
*/
package com.ovhoo.android.fiveexplore;
import android.text.InputFilter;
import android.text.Spanned;
public class AlphaNumericInputFilter implements InputFilter {
@Override
public CharSequence filter(CharSequence source, int start, int end,
Spanned dest, int dstart, int dend) {
String _retour = "";
for (int i = start; i < end; i++) {
char _c = source.charAt(i);
if (_c == '/'){
_retour += "_";
}
else{
_retour += _c;
}
}
return _retour;
}
}
|