即使我已将inputType设置为编号edittext android,也会出现文本键盘

时间:2014-02-14 18:16:38

标签: android text keyboard numbers android-edittext

我想显示数字键盘。

这是我的代码。 (这是我列表中的一项)。

       <?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"   
    android:orientation="horizontal" >

    <TextView
        android:id="@+id/checked_list_item_text"
        android:layout_width="500dp"
        android:layout_height="wrap_content"
        android:layout_toLeftOf="@+id/checked_list_item_quatity"        
        android:layout_centerVertical="true"
        android:textSize="30sp" />

    <EditText
        android:id="@+id/checked_list_item_quatity"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true"
        android:layout_marginLeft="7dp"
        android:gravity="center_vertical"
        android:hint="Quantité"
        android:focusableInTouchMode="true"
        android:inputType="number"
        android:maxLength="6"
        android:textSize="30sp" />

</RelativeLayout>

当我点击edittext时,键盘会显示数字,但会快速切换到文字,我必须再次点击才能获得数字键盘。

仅在我打开活动时第一次出现此问题。

2 个答案:

答案 0 :(得分:1)

尝试更改AndroidManifest.xml中的输入模式

在尝试将焦点集中到listview中的edittext字段时,我遇到了同样的问题。添加android:windowSoftInputMode =&#34; adjustPan&#34;在持有listview的活动中解决了我的问题。

<activity android:name=".MyEditTextInListView"
           android:label="@string/app_name"
           android:windowSoftInputMode="adjustPan">

答案 1 :(得分:0)

你有什么应该工作,但它可能是代码方面的东西。也许你可以以编程方式强制它:

EditText checkedInput = (EditText) findViewById(R.id.checked_list_item_quatity);
checkedInput.setInputType(InputType.TYPE_CLASS_NUMBER);