gpt4 book ai didi

Android EditText 不打开键盘

转载 作者:行者123 更新时间:2023-12-02 08:24:42 27 4
gpt4 key购买 nike

我正在尝试让我的用户使用该应用程序重命名文件,但我的问题更多地与设计有关。我希望在重命名时,EditText 将包括旧名称,并且它将被选中,不包括文件扩展名。
我已经设法做到了,但我的问题是即使选择了文本,键盘和文本上的光标也没有显示。这使得用户单击 editText 对其进行重命名,从而取消了选择,所以这就是它真正困扰我的原因。 图片引用:
Image for reference
我的 EditText xml(忽略可见性属性):

<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/renameEditText"
android:paddingTop="20dp"
android:paddingBottom="20dp"
android:layout_marginBottom="8dp"
android:paddingLeft="20dp"
android:visibility="gone"
android:focusable="true"/>

我的设置选择代码:

renameEdit.setOnFocusChangeListener(new View.OnFocusChangeListener() {
@Override
public void onFocusChange(View v, boolean hasFocus) {
if (hasFocus) {
String text = renameEdit.getText().toString();
if (!text.isEmpty()) {
int index = text.lastIndexOf('.');
if (index == -1)
renameEdit.selectAll();
else
renameEdit.setSelection(0, index);
}
}
}
});

有什么建议吗?

最佳答案

有几种方法可以通过编程方式打开软键盘。

甚至在 list 中以声明方式执行此操作的几种方法;但是,这需要在 Activity 开始时打开键盘。

试试这个...

getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_VISIBLE);

其他可能的答案在这里 - Open soft keyboard programmatically

关于Android EditText 不打开键盘,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33320560/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com