In my AndroidManifest.xml file, I have the following definition for the EditText

    <EditText
        android:id="@+id/dob_aob"
        android:layout_width="match_parent"
        android:layout_height="@dimen/edtxt_height"
        android:layout_below="@+id/textView1"
        android:layout_marginTop="0dp"
        android:gravity="center_vertical"
        android:padding="10dp"
        android:background="#eed0d0"
        android:textSize="@dimen/edtxt_font_size"
        android:textColor="@android:color/black"
        android:textCursorDrawable="@null"
        android:imeOptions="actionGo"
        android:inputType="numbers"
        android:digits="*+-0123456789"
        android:ems="10"/>

I.e.: The user enters an integer between 0 through 9 and the multiplication, addition, and subtraction symbols.

The following came up on my phone:
http://imgur.com/YP6dXtU

In a different program, I saw the following keyboard come up:
http://imgur.com/QXAPnOV

May someone, tell me the precise name of the "inputType" of the latter?

My os is: Android 4.4.3

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.