我的ListView
行EditText
行布局。我希望EditText
在创建时被禁用,并使其可以在按钮上进行编辑" EDIT"单击。更新文本后,用户可以点击" SAVE"按钮使其再次无法使用。我在使相应的EditText
可编辑时遇到问题。它变为启用但没有获得焦点,软键盘也不会出现。我在这里做错了吗?
//Adapter class button click:-
holder.edit.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
holder.count.setEnabled(true);
holder.count.setInputType(InputType.TYPE_CLASS_NUMBER);
holder.count.setFocusable(true);
holder.count.requestFocus();
InputMethodManager imm = (InputMethodManager)mContext.getSystemService(Context.INPUT_METHOD_SERVICE);
imm.showSoftInput(holder.count, InputMethodManager.SHOW_FORCED);
holder.edit.setVisibility(View.GONE);
holder.save.setVisibility(View.VISIBLE);
}
});
holder.save.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
holder.count.setEnabled(false);
holder.edit.setVisibility(View.VISIBLE);
holder.save.setVisibility(View.GONE);
}
});

//row layout xml:-
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#ffb3ff">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<EditText
android:id="@+id/count"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:ellipsize="end"
android:padding="10dp"
android:gravity="center_horizontal"
android:inputType="none"
android:enabled="false"
android:focusable="false"/>
<Button
android:id="@+id/edit"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="edit"/>
<Button
android:id="@+id/save"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="save"
android:visibility="gone"/>
</LinearLayout>
</FrameLayout>
&#13;
答案 0 :(得分:2)
答案其实很简单。我只需要在我的Manifest活动中添加android:windowSoftInputMode="stateAlwaysHidden|adjustPan"
。之后,它与setEnabled()
合作。
答案 1 :(得分:0)
替换此代码段
InputMethodManager imm = (InputMethodManager)mContext.getSystemService(Context.INPUT_METHOD_SERVICE);
imm.showSoftInput(holder.count, InputMethodManager.SHOW_FORCED);
带
InputMethodManager inputMethodManager = (InputMethodManager) ctx.getSystemService(Context.INPUT_METHOD_SERVICE);
// only will trigger it if no physical keyboard is open
inputMethodManager.showSoftInput(view, InputMethodManager.SHOW_IMPLICIT);
在此之后,您必须将焦点放在列表中的另一个视图中。
答案 2 :(得分:0)
试
holder.count.setClickable(true);
答案 3 :(得分:0)
你遇到了我在为自己创建示例浏览器前几天遇到的同样问题。首先不要使用setEditable(false),因为一旦删除了编辑文本的焦点,它就不允许你输入如果你把它设置为可再次聚焦。
使用它而不是setEditable(false):
holder.count.setFocus(false);
holder.count.setClickable(false);
holder.count.setCursorVisible(false);
当您要启用textview时:
holder.count.setFocus(true);
holder.count.setFocusInTouchMode(true);
holder.count.setClickable(true);
holder.count.setCursorVisible(true);
如果有效,请在评论中告诉我......