我有一个EditText框,我想要选择它作为数字键盘时出现的默认键盘,因为大部分时间用户将输入数字。但是,如果需要,我也希望允许用户输入字母字符。使用android:inputType="number"
仅将输入限制为数字。我有什么选择?
答案 0 :(得分:12)
以这种方式在xml中定义EditText:
<EditText
android:id="@+id/txtOppCodigoCliente"
android:inputType="textVisiblePassword"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:maxLength="11"
android:hint="@string/strCodigoCliente"/>
输出: android:inputType="textVisiblePassword"
一排数字和其余字母。
答案 1 :(得分:11)
我建议采用更强大的解决方案:
让用户能够选择输入类型:
需要修复
- 更好地处理显示/隐藏输入选择按钮
- 可能会在输入类型为字母
时删除建议
以下是活动:
package mobi.sherif.numberstexttextview;
import android.os.Bundle;
import android.app.Activity;
import android.text.InputType;
import android.view.View;
import android.view.View.OnFocusChangeListener;
import android.widget.EditText;
public class MainActivity extends Activity {
EditText mEdit;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
mEdit = (EditText) findViewById(R.id.input);
mEdit.setOnFocusChangeListener(new OnFocusChangeListener() {
@Override
public void onFocusChange(View view, boolean focused) {
findViewById(R.id.llmenu).setVisibility(focused?View.VISIBLE:View.GONE);
}
});
}
public void onNumbers(View v) {
mEdit.setInputType(InputType.TYPE_CLASS_NUMBER);
}
public void onLetters(View v) {
mEdit.setInputType(InputType.TYPE_CLASS_TEXT);
}
}
以下是活动的xml:activity_main.xml
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<ScrollView
android:id="@+id/scrollview"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_alignWithParentIfMissing="true"
android:layout_above="@+id/llmenu" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<EditText
android:id="@+id/input"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:inputType="number" >
<requestFocus />
</EditText>
</LinearLayout>
</ScrollView>
<LinearLayout
android:id="@+id/llmenu"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:background="#000000"
android:padding="0dp" >
<Button
android:id="@+id/buttonnumbers"
android:layout_width="0dp"
android:onClick="onNumbers"
android:layout_height="match_parent"
android:layout_weight="1"
android:text="Numbers" />
<Button
android:id="@+id/buttonletters"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:onClick="onLetters"
android:text="Letters" />
</LinearLayout>
</RelativeLayout>
答案 2 :(得分:10)
以下是您要找的内容:
以这种方式在xml中定义EditText
:
<EditText
android:id="@+id/etTest"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:ems="10"
android:hint="@string/hint">
</EditText>
并在onCreate()
:
etTest = (EditText) findViewById(R.id.etTest);
etTest.setRawInputType(InputType.TYPE_CLASS_NUMBER);
// Note the "Raw"
当您现在点击EditText
时,您可以输入数字和字母! (首先显示数字键盘)
答案 3 :(得分:8)
不幸的是,这是不可能的,因为只能为EditText设置一个inputType。以下内容仅显示按钮上的字母字符。
<EditText
android:id="@+id/editText1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:inputType="text|number" />
但是,我可以建议你将输入类型设置为数字,只需在窗体上添加一个小的switchKeyboard按钮,靠近小键盘。并设置其onClick
editText1.setInputType(InputType.TYPE_TEXT_FLAG_NO_SUGGESTIONS);
这样用户也可以切换到字母字符。
答案 4 :(得分:6)
基本上,EditText inputtype用于在EditText中设置输入类型。
android:inputtype
的可能值为:
然后您可以使用示例中显示的任何值:
<EditText android:id="@+id/EditText01"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:inputType="number"
android:text="1212223"/>
答案 5 :(得分:4)
华硕平板电脑具有该功能,他们已经定制了默认键盘。键盘仅包含数字和字母。我认为您的需求解决方案也是自定义默认键盘
答案 6 :(得分:2)
以下是我如何实现它......
机器人:的inputType = “textPhonetic | numberDecimal” 机器人:位数= “/ 0123456789.abcdefghijklmnopqrstuvwxyz”
只允许使用数字指定的字符。
请注意,显示的键盘是拨号器,而不是典型的键盘。对我来说,它完全在XML中实现了我所需要的。
答案 7 :(得分:2)
在这种情况下,您不应该使用任何inputType过滤器,只需在EditText属性中添加以下行
android:digits="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890 "
现在只允许这些字符输入EditText。 edittext的完整代码如下:
<EditText
android:id="@+id/etTest"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:ems="10"
android:digits="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890 "
android:hint="@string/hint">
答案 8 :(得分:2)
你可以按照Paresh Mayani的回答。
在建议中,您可以根据用户选择使用android:inputType="textPhonetic"
作为inputType文本和数字。
希望你能明白我的意思。
答案 9 :(得分:2)
在活动中的OnCreate中执行以下操作:
t = (EditText) findViewById(R.id.test);
t.setKeyListener(new KeyListener() {
@Override
public boolean onKeyUp(View view, Editable text, int keyCode, KeyEvent event) {
return false;
}
@Override
public boolean onKeyOther(View view, Editable text, KeyEvent event) {
return false;
}
@Override
public boolean onKeyDown(View view, Editable text, int keyCode, KeyEvent event) {
if (keyCode == 67) { // Handle backspace button =)
if (text.length() > 0) {
t.setText(text.subSequence(0, text.length() - 1));
t.setSelection(text.length()-1);
}
}
return false;
}
@Override
public int getInputType() {
return InputType.TYPE_CLASS_NUMBER;
}
@Override
public void clearMetaKeyState(View view, Editable content, int states) {
}
});
在这种情况下,您输入number
并且android将显示数字键盘,但您可以输入任何您想要的内容。
您也可以根据需要覆盖其他方法。
答案 10 :(得分:1)
以编程方式可以对通常的流量进行一点调整。 首先,您必须将editText设置为:
editText.setInputType(InputType.TYPE_CLASS_NUMBER);
然后你必须听keyevent。 按下井号时,再次将InputType设置为InputType.TYPE_CLASS_TEXT。 这应该适用于我。
editText.setOnKeyListener(new View.OnKeyListener()
{
@Override
public boolean onKey(View v, int keyCode, KeyEvent event) {
// TODO Auto-generated method stub
Log.d("KeyBoard", "Keyboard Test Key Hit");
switch (keyCode)
{
KeyEvent.KEYCODE_POUND:
if(editText.setInputType(InputType.TYPE_CLASS_TEXT);
{
editText.setInputType(InputType.TYPE_CLASS_TEXT);
return true;
}
}
}
}
答案 11 :(得分:1)
为什么不只有一个切换按钮:
这样,您可以将数字小键盘设置为默认值,然后用户可以通过按下按钮进行更改。
答案 12 :(得分:1)
这是不可能的在各种手机上提供当前默认的Android输入类型。
有很多可能的黑客在某些键盘上工作但在其他键盘上没有,就像设置答案中通常包含的原始输入类型的常用方法一样:
editText.setRawInputType(InputType.TYPE_CLASS_NUMBER)
我能找到的最佳建议是在XML中使用textPostalAddress
输入类型:
android:inputType="textPostalAddress"
不幸的是,这并不是我们想做的还是,但将来可能。这样做的唯一好处是编辑框中的元信息将反映您的意图。
答案 13 :(得分:0)
在textView的代码中,删除android:inputType中的“text”。
应该是,
<EditText
android:id="@+id/editText1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:inputType="number" />
答案 14 :(得分:0)
您可以以编程方式执行此操作:
// Numbers
mEditText.setInputType(InputType.TYPE_CLASS_NUMBER);
// Text
mEditText.setInputType(InputType.TYPE_CLASS_TEXT);
setInputType(int type)使用常量设置内容的类型 为inputType定义。
答案 15 :(得分:0)
正如Saurav所说,最好的方法是通过简单的倾听者在QWERTY Keyboard和Numeric Keyborad之间进行切换:
input.setInputType(InputType.TYPE_CLASS_TEXT);
input.setOnKeyListener(new View.OnKeyListener() {
@Override
public boolean onKey(View v, int keyCode, KeyEvent event) {
switch (keyCode) {
case 24: // Volumen UP
input.setInputType(InputType.TYPE_CLASS_NUMBER);
break;
case 25: // Volumen DOWN
input.setInputType(InputType.TYPE_CLASS_TEXT);
break;
}
return true;
}
});
答案 16 :(得分:0)
我尝试了所有方法,但并不完美。 所以我有另一个想法。适用于所有键盘。
@Override
protected void onCreate(@Nullable Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_reset_password);
editText.setRawInputType(InputType.TYPE_CLASS_NUMBER);
}
@Override
public void onConfigurationChanged(Configuration newConfig) {
super.onConfigurationChanged(newConfig);
// Checks whether a hardware keyboard is available
if (newConfig.hardKeyboardHidden == Configuration.HARDKEYBOARDHIDDEN_NO) {
Toast.makeText(this, "keyboard visible", Toast.LENGTH_SHORT).show();
if (editText.isFocused()) {
editText.setInputType(InputType.TYPE_CLASS_TEXT);
}
} else if (newConfig.hardKeyboardHidden == Configuration.HARDKEYBOARDHIDDEN_YES) {
Toast.makeText(this, "keyboard hidden", Toast.LENGTH_SHORT).show();
if (editText.getInputType() == InputType.TYPE_CLASS_TEXT) {
editText.setInputType(InputType.TYPE_CLASS_NUMBER);
}
}
}
答案 17 :(得分:0)
答案 18 :(得分:-2)
在EditText的xml布局中添加以下参数:
android:inputType="number|text"
这将允许用户同时输入文本和数字,并在xml中包含逻辑,而不是在您的活动或片段中包含代码。