我一直在关注这个问题的其他人的答案,但到目前为止似乎没有任何工作。
目前我有一个ExpandableListAdapter,它是根据SDK附带的一个示例构建的。至于显示数据我得到它正常工作,但我无法让onChildClick事件工作。我已经尝试将我的XML元素的focusable属性设置为false,但我仍然没有运气。
目前这就是我的代码:
MainActivity.java
package com.example.expandablelisttest;
import android.os.Bundle;
import android.app.Activity;
import android.view.Menu;
import android.widget.ExpandableListView;
public class MainActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
ExpandableListView expandableListView = (ExpandableListView) findViewById(R.id.expandableListView1);
ExpandableListAdapter expandableAdapter = new ExpandableListAdapter();
expandableListView.setAdapter(expandableAdapter);
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.activity_main, menu);
return true;
}
}
ExpandableListAdapter.java
package com.example.expandablelisttest;
import android.util.Log;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.BaseExpandableListAdapter;
import android.widget.ExpandableListView;
import android.widget.TextView;
import android.widget.Toast;
public class ExpandableListAdapter extends BaseExpandableListAdapter
implements ExpandableListView.OnChildClickListener
{
private String[] groups = { "People Names", "Dog Names", "Cat Names", "Fish Names" };
private String[][] children = {
{ "Arnold", "Barry", "Chuck", "David" },
{ "Ace", "Bandit", "Cha-Cha", "Deuce" },
{ "Fluffy", "Snuggles" },
{ "Goldy", "Bubbles" }
};
public Object getChild(int groupPosition, int childPosition) {
return children[groupPosition][childPosition];
}
public long getChildId(int groupPosition, int childPosition) {
return childPosition;
}
@Override
public View getChildView(int groupPosition, int childPosition,
boolean isLastChild, View convertView, ViewGroup parent)
{
if (convertView ==null)
{
LayoutInflater layoutInflater = LayoutInflater.from(parent.getContext());
convertView = layoutInflater.inflate(R.layout.child_view, null);
}
TextView childTxt = (TextView) convertView.findViewById(R.id.childTxt);
childTxt.setText(getChild(groupPosition, childPosition).toString());
return convertView;
}
@Override
public int getChildrenCount(int groupPosition) {
return children[groupPosition].length;
}
@Override
public Object getGroup(int groupPosition) {
return groups[groupPosition];
}
@Override
public int getGroupCount() {
return groups.length;
}
@Override
public long getGroupId(int groupPosition) {
return groupPosition;
}
@Override
public View getGroupView(int groupPosition, boolean isExpanded,
View convertView, ViewGroup parent)
{
if (convertView ==null)
{
LayoutInflater layoutInflater = LayoutInflater.from(parent.getContext());
convertView = layoutInflater.inflate(R.layout.group_view, null);
}
TextView groupTxt = (TextView) convertView.findViewById(R.id.groupTxt);
groupTxt.setText(getGroup(groupPosition).toString());
return convertView;
}
@Override
public boolean hasStableIds() {
// TODO Auto-generated method stub
return true;
}
@Override
public boolean isChildSelectable(int groupPosition, int childPosition) {
// TODO Auto-generated method stub
return true;
}
@Override
public boolean onChildClick(ExpandableListView parent, View v,
int groupPosition, int childPosition, long id)
{
Log.d("Result:", "Click event triggered");
return true;
}
}
activity_main.xml中
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<ExpandableListView
android:id="@+id/expandableListView1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1" >
</ExpandableListView>
</LinearLayout>
child_view.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:focusable="false" >
<TextView
android:id="@+id/childTxt"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Medium Text"
android:textAppearance="?android:attr/textAppearanceMedium"
android:focusable="false"/>
</LinearLayout>
group_view.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:focusable="false" >
<TextView
android:id="@+id/groupTxt"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingLeft="36dp"
android:text="Large Text"
android:textAppearance="?android:attr/textAppearanceLarge"
android:focusable="false" />
</LinearLayout>
如果有人能够理解为什么我的点击事件没有解雇,可以帮助我。我非常感激。提前谢谢。
答案 0 :(得分:8)
这种情况的发生主要是因为您的孩子在尝试点击它时没有被选中,因为在包含执行此操作的方法的适配器中称为isChildSelectable(),默认情况下返回flase,因此请将其设为true,因为您需要它选择问题并解决问题...谢谢:)
答案 1 :(得分:2)
OnChildClickListener
不属于Adapter
,应该添加到ExpandableListView
而不是Activity
内。
像这样:
expandableListView.setOnChildClickListener(new OnChildClickListener() {
@Override
public boolean onChildClick(ExpandableListView parent, View v, int groupPosition, int childPosition, long id) {
// Handle clicks on the children here...
return false;
}
});
答案 2 :(得分:0)
如果在适配器中使用isChildSelectable返回值false,则更改布尔返回值true。您可以使用此
<caption>
而不是
@Override
public boolean isChildSelectable(int groupPosition, int childPosition) {
return true;
}