我试图在我的listView项目上放一个按钮并拨打电话......但到目前为止,我无法弄清楚如何将该数据分配给该按钮操作,这是我的代码...列表项目本身不可点击,只有按钮是。我使用适配器从数组中获取数据
public View getView(int position, View convertView, ViewGroup parent)
{
ViewHolder holder;
//Get the current location object
info lm = (info) getItem(position);
//Inflate the view
if(convertView==null)
{
convertView = dInflater.inflate(R.layout.dealbranch_layout, null);
holder = new ViewHolder();
holder.name = (TextView) convertView.findViewById(R.id.address);
holder.call = (Button) convertView.findViewById(R.id.call);
convertView.setTag(holder);
}
else
{
holder = (ViewHolder) convertView.getTag();
}
holder.name.setText(lm.getName());
holder.call.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View arg0) {
Intent call = new Intent (Itent.ACTION_CALL);
/// No clue.. >,< /// /// lm.getPhone() should get the phone# for this row.
/// this action does not work /////
startActivity(call);
}
});
return convertView;
}
如果有人能指引我,那会很棒。感谢。
答案 0 :(得分:3)
我们不知道你如何定义班级'信息'所以这是我的猜测:
首先,更改一行:
info lm = (info) getItem(position);
到
final info lm = (info) getItem(position);
然后是如何使用电话号码调用ACTION_DIAL:
holder.call.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View arg0) {
Intent call = new Intent (Intent.ACTION_DIAL, Uri.parse("tel:" + lm.getPhone()));
/// No clue.. >,< /// /// lm.getPhone() should get the phone# for this row.
/// this action does not work /////
startActivity(call);
}
这是假设lm.getPhone()方法返回字符串中的电话号码。