我正在使用可扩展的listview。在那里我需要使用可点击的imageview。我试过跟随但不工作。它给出了空指针异常。
这是我的xml和listview适配器。我需要在imageview上放置click事件。从正常活动onclicklistner工作perfact,但如果你把它放在ExpandableListActivity中会给出错误。
提前致谢..
public class ExpList extends ExpandableListActivity
{
// static final String parent_node[] = { "grey", "blue", "yellow", "red" };
String parent_node[];
static final String shades[][] = {
{
"lightgrey","#D3D3D3",
"dimgray","#696969",
"sgi gray 92","#EAEAEA"
}, {},
{
"dodgerblue 2","#1C86EE",
"steelblue 2","#5CACEE",
"powderblue","#B0E0E6"
}, {}
};
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle icicle)
{
super.onCreate(icicle);
setContentView(R.layout.main);
LayoutInflater group_inflater = (LayoutInflater)this.getSystemService(LAYOUT_INFLATER_SERVICE);
View group_layout = group_inflater.inflate(R.layout.group_row, null);
ImageView img_call = (ImageView)group_layout.findViewById(R.id.imgcall);
img_call.setOnClickListener(new OnClickListener()
{
@Override
public void onClick(View v)
{
Toast.makeText(getBaseContext(), "clicked...", Toast.LENGTH_SHORT).show();
});
SimpleExpandableListAdapterWithEmptyGroups expListAdapter =
new SimpleExpandableListAdapterWithEmptyGroups(
this,
createGroupList(),
R.layout.group_row,
new String[] { "colorName" },
new int[] { R.id.groupname },
createChildList(),
R.layout.child_row,
new String[] { "shadeName", "rgb" },
new int[] { R.id.childname, R.id.rgb }
);
setListAdapter( expListAdapter );}
我的groupview xml是:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<ImageView
android:src="@drawable/expander_group"
android:id="@+id/explist_indicator"
android:layout_width="35px"
android:layout_height="35px"/>
<ImageView
android:src="@drawable/contact_thumbnail"
android:id="@+id/img_contact_thumbnail"
android:layout_width="50px"
android:layout_height="50px"/>
<TextView
android:id="@+id/groupname"
android:layout_width="190px"
android:layout_height="match_parent"
android:paddingLeft="30px"
android:textSize="16px"
android:textStyle="bold" />
<ImageView
android:id="@+id/imgcall"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/call"
android:clickable="true" />
</LinearLayout>
修改
现在解决了NullPointerException问题。但我提出了onclicklistner无法正常工作的新问题。没有Toast或该部分中写入的任何其他内容都不会执行。我调试程序,发现当单击imageview时,代码在onclicklistner上没有返回。
任何想法?
答案 0 :(得分:1)
你可以尝试这个,希望它完全可以工作。只需在xml里面的imageview中添加两行,然后编写一个函数来监听活动类中的按钮点击:
<ImageView
android:id="@+id/imgcall"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/call"
android:clickable="true"
android:onClick="onClickHandler"/>
在您的活动课程中:
public void onClickHandler (View v) {
switch (v.getId()) {
case R.id.imgcall:
// do what ever you want here ...
break;
}
}