我正在尝试创建一个包含编辑文本的活动,有些像网格视图包含数字输入这样的东西
这是我的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);
}
}
我搜索了很多图书馆或这样的例子,但我没有找到