我正在尝试强制数字小键盘显示我的活动和EditText加载的时间。在here和其他地方,似乎有一个非常直截了当的答案:你说
EditText yourEditText= (EditText) findViewById(R.id.yourEditText);
InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
imm.showSoftInput(yourEditText, InputMethodManager.SHOW_IMPLICIT);
那好吧。所以我这样做,我包括导入:
import android.content.Context;
import android.os.Bundle;
import android.view.inputmethod.InputMethodManager;
import android.widget.EditText;
但是当我们进入showSoftInput时,Studio会变红并说“无法解析符号showSoftInput”。我导入InputMethodManager时不应该获得该符号吗? showSoftInput doesn't seem to be deprecated或任何其他内容。
答案 0 :(得分:3)
键盘未打开,因为它需要一些延迟,
请遵循此代码
public class MainActivity extends AppCompatActivity {
private EditText editText;
private Handler handler = new Handler();
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
editText = (EditText) findViewById(R.id.editText);
/* */
handler.postDelayed(new Runnable() {
@Override
public void run() {
editText.requestFocus();
InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
imm.toggleSoftInput(InputMethodManager.SHOW_FORCED,0);
}
},100);
}
}
和XML
<EditText
android:id="@+id/editText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:ems="10"
android:focusable="true"
android:inputType="number"
android:text="">
<requestFocus></requestFocus>
</EditText>