如何创建自定义数字键板

时间:2017-09-09 14:31:48

标签: java android

我正在尝试创建一个包含编辑文本的活动,有些像网格视图包含数字输入这样的东西 enter image description here

这是我的xml文件

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical">

    <EditText
        android:id="@+id/pKeyBoardId"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:ems="10"
        android:inputType="numberDecimal">

        <requestFocus />
    </EditText>


</RelativeLayout>

这是我的班级

import android.app.Activity;
import android.os.Bundle;
import android.text.InputType;
import android.widget.EditText;

public class PaymentKeyBoard extends Activity {
    /** Called when the activity is first created. */

    EditText paymentEt;
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.payment_keyboard);
        paymentEt = (EditText) findViewById(R.id.pKeyBoardId);
        paymentEt.setInputType(InputType.TYPE_CLASS_NUMBER);
    }
}

我搜索了很多图书馆或这样的例子,但我没有找到

1 个答案:

答案 0 :(得分:1)

如果您想创建自己的自定义键盘,此link将向您展示如何创建自己的键盘