米娅的android之旅
android开发群群号:84926730

如果希望输入法键盘弹出时不自动向上挤压activity,在activty中设置属性android:windowSoftInputMode="adjustPan"即可。

<activity android:name="testActivity"
      android:windowSoftInputMode="adjustPan">

希望输出的是纯数字键盘:

    <style name="editFont" parent="@android:style/TextAppearance.Widget.EditText">
        <item name="android:layout_width">fill_parent</item>
        <item name="android:layout_height">wrap_content</item>
        <item name="android:textColor">@color/black</item>
        <item name="android:textSize">18dp</item>
        <item name="android:singleLine">true</item>
        <item name="android:numeric">integer</item>
        <item name="android:digits">1234567890.</item>
    </style>

直接引用style即可。

 

posted on 2012-07-16 14:22  程序缘儿  阅读(14336)  评论(0编辑  收藏  举报