在Nexus S手机的2.3.4更新之后我才看到这个问题。
我有一个非常简单的应用程序,主要活动在应用程序启动时加载。
这个主要活动有一个LinearLayout,包括一些TextViews,EditText,几个Spinners和一个Button。
我现在遇到EditText输入的问题。它应该是一个带有手机输入类型的软键盘。相反,它提供了标准的字母数字软键盘,一旦您开始输入输入,它就会将其传递给Google搜索应用程序,并且根本不会填写EditText。
如果我转到我的设置活动并导航回来,EditText会正常运行。
我不能为我的生活弄清楚这里出了什么问题,并且即将宣布这是手机2.3.4更新的问题。
活动代码:
public class MainActivity extends Activity {
private boolean unregistered = false;
private Spinner location, time;
private Button submit;
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
EditText pin = (EditText) findViewById(R.id.pfp_pin);
pin.setOnKeyListener(new OnKeyListener() {
public boolean onKey(View v, int keyCode, KeyEvent event) {
if(debugMode) System.out.println("In onKeyListener for PIN");
// If the event is a key-down event on the "enter" button
if ((event.getAction() == KeyEvent.ACTION_DOWN) &&
(keyCode == KeyEvent.KEYCODE_ENTER)) {
return true;
}
return false;
}
public int getInputType() {
return InputType.TYPE_CLASS_PHONE;
}
});
pin.setTransformationMethod(new PasswordTransformationMethod());
pin.requestFocus();
location = (Spinner) findViewById(R.id.pfp_location);
ArrayAdapter<CharSequence> loc_adapter = ArrayAdapter.createFromResource(
this, R.array.pfp_locs, android.R.layout.simple_spinner_item);
loc_adapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
location.setAdapter(loc_adapter);
location.setOnItemSelectedListener(new LocOnItemSelectedListener());
time = (Spinner) findViewById(R.id.pfp_time);
ArrayAdapter<CharSequence> time_adapter = ArrayAdapter.createFromResource(
this, R.array.pfp_times, android.R.layout.simple_spinner_item);
time_adapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
time.setAdapter(time_adapter);
time.setOnItemSelectedListener(new TimeOnItemSelectedListener());
submit = (Button) findViewById(R.id.pfp_submit);
submit.setOnClickListener(new SubmitOnClickListener());
}
在那里,我尝试强制对焦,密码屏蔽和手机输入类型作为第一个措施,看看我是否可以解决它。这些不会改变任何行为,可以忽略,因为当问题开始时它们不存在。
布局
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical">
<ImageView
android:maxHeight="88sp"
android:scaleType="centerInside"
android:adjustViewBounds="true"
android:src="@drawable/header" android:layout_gravity="center" android:layout_height="wrap_content" android:layout_width="wrap_content"/>
<TextView android:id="@+id/pfp_pin_title"
android:text="@string/pfp_pin_title"
android:paddingLeft="14dip"
android:layout_width="fill_parent"
android:layout_height="wrap_content"></TextView>
<EditText android:id="@+id/pfp_pin"
android:text=""
android:password="true"
android:singleLine="true"
android:inputType="phone"
android:linksClickable="false"
android:imeOptions="actionDone"
android:autoLink="none"
android:nextFocusUp="@+id/pfp_time"
android:layout_gravity="top"
android:layout_width="fill_parent" android:layout_height="wrap_content"></EditText>
<TextView android:id="@+id/pfp_loc_label"
android:text="@string/pfp_loc_label"
android:paddingLeft="14dip"
android:layout_width="fill_parent"
android:layout_height="wrap_content"></TextView>
<Spinner android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:id="@+id/pfp_location"
android:prompt="@string/pfp_location_s"
android:layout_marginBottom="5dp"></Spinner>
<TextView android:id="@+id/pbp_time_label"
android:layout_height="wrap_content"
android:text="@string/pfp_time_label"
android:paddingLeft="14dip"
android:layout_width="fill_parent"></TextView>
<Spinner android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:id="@+id/pfp_time"
android:prompt="@string/pfp_time_s"
android:layout_marginBottom="25dp"></Spinner>
<Button android:layout_width="wrap_content"
android:id="@+id/pfp_submit"
android:text="@string/pfp_submit_s"
android:layout_height="65dp"
android:nextFocusDown="@+id/pfp_pin"
android:layout_gravity="center_horizontal"></Button>
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:maxHeight="50sp"
android:scaleType="centerInside"
android:adjustViewBounds="true"
android:src="@drawable/powered_by_reversed" />
答案 0 :(得分:1)
我相信这是一个错误。设置
时,我遇到与2.3.3,2.3.4和NookColor 1.20相同的问题 android:inputType="number"
显示手机软键盘而不是数字软键盘。