Android数字键盘

时间:2012-10-09 16:24:47

标签: android cordova android-edittext

我的应用程序正常运行,但无法让键盘只显示数字键(包括小数)。我正在使用phonegap,所以我不知道这是不是导致这个问题,但我尝试添加:

<EditText android:numeric="decimal" />

进入我的AndroidManifest.xml和activity_main.xml但没有运气。

我想我需要更改phonegap中的内容,因为我的activity_main.xml只显示hello world字符串而不是我应用的其他组件。

修改

这是“activity_main.xml”

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent" >

<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_centerHorizontal="true"
    android:layout_centerVertical="true"
    android:text="@string/hello_world"
    tools:context=".MainActivity" />

  <EditText   
    android:inputType="number">
  </EditText>

</RelativeLayout>

现在这里是AndroidManifest.xml

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.yourappname.yourappname"
android:versionCode="1"
android:versionName="1.0" >

<uses-sdk
    android:minSdkVersion="8"
    android:targetSdkVersion="15" />

<supports-screens 
android:largeScreens="true" 
android:normalScreens="true" 
android:smallScreens="true" 
android:resizeable="true" 
android:anyDensity="true" />
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
<uses-permission android:name="android.permission.INTERNET" />

<EditText android:inputType="phone" android:numeric="decimal"></EditText>

<application
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >
    <activity
    android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale"
        android:name=".MainActivity"
        android:label="@string/title_activity_main" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
</application>

</manifest>

1 个答案:

答案 0 :(得分:1)

Hii你没有给你的editext提供高度和宽度。因此它不会显示在你的布局文件中。就输入而言,inputType = number将弹出数字键盘。使用EditText的代码。

   <EditText 
     android:id="@+id/edittext"
     android:layout_width="wrap_content"
     android:layout_height="wrap_content"
     android:inputType="number"/>