gpt4 book ai didi

fragment 中未显示 Android EditText 键盘

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:37:54 25 4
gpt4 key购买 nike

我添加了 EditTextFragment , 但我的 EditText即使我点击 EditText 也不显示键盘.

这是我的代码

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/white">

<EditText
android:id="@+id/setting_nickname"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:ems="8"
android:gravity="right"
android:hint="Samantha"
android:textColorHint="@color/nav_selected"
android:textSize="14dp"
android:textColor="@color/nav_selected"
android:layout_centerVertical="true"
android:layout_alignParentRight="true"
android:layout_alignParentEnd="true" >
</EditText>

<EditText
android:id="@+id/setting_country"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:ems="8"
android:gravity="right"
android:hint="Samantha"
android:textColorHint="@color/nav_selected"
android:textSize="14dp"
android:textColor="@color/nav_selected"
android:layout_centerVertical="true"
android:layout_alignParentRight="true"
android:layout_alignParentEnd="true" >
</EditText>

</LinearLayout>

我尝试获取 EditText 的监听器

final InputMethodManager imm = (InputMethodManager) getActivity().getSystemService(Context.INPUT_METHOD_SERVICE);
edit_nickname.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {

imm.showSoftInput(edit_nickname, 0);

//edit_nickname.requestFocus(); --> fail
//imm.showSoftInput(edit_nickname, InputMethodManager.SHOW_IMPLICIT); --> fail
//imm.showSoftInput(edit_nickname, InputMethodManager.SHOW_FORCED); --> fail
}
});

这段代码无法...

final InputMethodManager imm = (InputMethodManager) getActivity().getSystemService(Context.INPUT_METHOD_SERVICE);
imm.toggleSoftInput(InputMethodManager.SHOW_FORCED, InputMethodManager.HIDE_IMPLICIT_ONLY);

此外,我尝试添加 LinearLayoutfocusableInTouchModefocusable , 但失败了。

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:layout_marginTop="10dp"
android:padding="10dp"
android:background="@color/black_transparent"
android:focusableInTouchMode="true"
android:focusable="true">
<EditText .../>
<EditText .../>
</LinearLayout>

如果我使用 <requestFocus />比键盘显示但它仅适用于 EditText 之一.我能怎么做?为什么不显示键盘?

最佳答案

尝试使用这个,它对我有用

EditText myEd= (EditText)getActivity().findViewById(R.id.myEd);
myEd.requestFocus();
InputMethodManager mgr = (InputMethodManager)getActivity().getSystemService(Context.INPUT_METHOD_SERVICE);
mgr.showSoftInput(myEd, InputMethodManager.SHOW_IMPLICIT);

关于 fragment 中未显示 Android EditText 键盘,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30160493/

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