我有一个可以与 JSONObject 一起正常工作的 ExpandableListView。当我单击组时,会显示孩子。孩子代表评论,在我的例子中,最后一个孩子是 EditText。通过这个 EditText 我可以插入一个新的评论。问题是这样的:
如果在我的适配器中我使用 myEditText.requestFocus() 键盘可以工作,我的意思是当我输入它时,editText 会更新字符,但通常我必须在 EditText 上多次按下才能看到键盘。如果在我的适配器中我不使用 myEditText.requestFocus(),当我单击 EditText 时,我可以快速看到键盘(通常当您单击 EditText 时键盘会出现),但是如果我键入,editText 不会更新,我的意思是我在小部件中看不到任何字符。要查看字符,我必须在打开键盘时再单击一次 EditText。
这是我用于评论的布局:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/layoutchildren"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:orientation="vertical"
android:paddingLeft="10dip"
android:paddingLeft="10dip"
android:background="@color/lgray">
<RelativeLayout android:paddingLeft="10dip" android:paddingRight="10dip" android:background="@color/white" android:layout_height="45dip" android:layout_width="fill_parent" android:layout_marginBottom="2dip" >
<ImageView android:id="@+id/feedcommentcell_profileimg" android:layout_width="32dip" android:layout_height="32dip" android:layout_centerVertical="true" android:scaleType="fitXY"/>
<TextView android:id="@+id/feedcommentcell_username" android:textStyle="bold" android:layout_width="wrap_content" android:layout_height="wrap_content" android:textSize="13sp" android:textColor="@color/black" android:layout_toRightOf="@+id/feedcommentcell_profileimg" android:layout_marginLeft="10dip" android:layout_alignTop="@+id/feedcommentcell_profileimg"/>
<TextView android:id="@+id/feedcommentcell_comment" android:layout_width="wrap_content" android:layout_height="wrap_content" android:textSize="11sp" android:textColor="@color/black" android:layout_toRightOf="@+id/feedcommentcell_profileimg" android:layout_marginLeft="10dip" android:layout_below="@+id/feedcommentcell_username"/>
<TextView android:id="@+id/feedcommentcell_scanhour" android:layout_width="wrap_content" android:layout_height="wrap_content" android:textSize="10sp" android:textColor="@color/dgray" android:layout_alignParentRight="true" android:layout_alignBottom="@+id/feedcommentcell_username"/>
</RelativeLayout>
</LinearLayout>
这是我的 EditText 的布局
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:orientation="vertical"
android:paddingLeft="10dip"
android:paddingRight="10dip"
android:background="@color/lgray">
<RelativeLayout android:id="@+id/feedcell_addcomment" android:paddingLeft="10dip" android:paddingRight="10dip" android:paddingTop="5dip" android:paddingBottom="5dip" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_marginTop="0.5dip" android:background="@color/mlgray">
<EditText android:id="@+id/feedcell_edittxt" android:textColor="@color/black" android:layout_width="fill_parent" android:hint="Write a comment.." android:layout_height="35dip" android:textSize="14sp" android:gravity="center_vertical" android:paddingLeft="10dip" android:background="@drawable/bgfriendsedtxt" android:singleLine="true" android:clickable="true"/>
<Button android:id="@+id/feedcell_commentbtn" android:textColor="@color/black" android:textSize="14sp" android:layout_height="32dip" android:layout_width="60dip" android:text="Done" android:layout_alignParentRight="true" android:layout_marginTop="4dip" android:layout_marginRight="5dip" android:gravity="center"/>
</RelativeLayout>
</LinearLayout>
这是我的适配器中的 getChildView:
@Override
public View getChildView(int groupPosition, int childPosition, boolean isLastChild, View convertView, ViewGroup parent)
{
View v = convertView;
int type=getChildType(groupPosition,childPosition);
LayoutInflater vi = (LayoutInflater)getSystemService(Context.LAYOUT_INFLATER_SERVICE);
if (v == null)
{
switch(type)
{
case TYPE_EDIT:
v = vi.inflate(R.layout.edittextcommentlist,null);
break;
case TYPE_CHILD:
v = vi.inflate(R.layout.feedcommentcell,null);
break;
}
}
try
{
if(type == TYPE_CHILD)
{
final JSONObject o = getChild(groupPosition,childPosition);
if(o!=null)
{
//I fill out my Children XML file
}
}
else if(type==TYPE_EDIT)
{
JSONObject o = getChild(groupPosition,childPosition);
if(o!=null)
{
final int groupPos=groupPosition;
addComment = (EditText)v.findViewById(R.id.feedcell_edittxt);
addComment.requestFocus();
addComment.setOnClickListener(new OnClickListener(){
@Override
public void onClick(View v) {
addComment.setText("");
}
});
//addComment.requestFocus();
commentBtn=(Button)v.findViewById(R.id.feedcell_commentbtn);
commentBtn.setOnClickListener(new OnClickListener(){
@Override
public void onClick(View v) {
//I write my code for button..ok
}
});
}
}
}
catch(Exception e)
{}
return v;
}
我找到了很多关于这个话题的答案,但我试图改变 android manifest 上的键盘状态,我试图实现 onFocusChange,我试图在 xml 文件中添加或通过 java 代码属性 android:focusable 和 android:focusableInTouchMode 。 ... 我注意到,如果我不使用 addComment.requestFocus(),当我单击 EditText 时,键盘会快速打开,但 Done 按钮会在 1 秒后转动并变为 return .. 总之我尝试了很多方法,但我可以不解决问题。有人能帮我吗?谢谢