我有一个TenantDetailsListAdapter
个详细信息,将BaseAdapter
扩展为
public class TenantDetailsListAdapter extends BaseAdapter {
}
我正在尝试启动一个意图活动,但是它没有工作。
我的意图如下:
Intent callIntent = new Intent(Intent.ACTION_CALL);
callIntent.setData(Uri.parse("tel:+"+text1 .trim()));
startActivity(callIntent);
有人可以知道如何调用不在活动范围内的活动。
答案 0 :(得分:-1)
在BaseAdapter
:
private Context _mContext;
public MyBaseAdapter(Context context/* some other data you need */){
this._mContext = context;
}
@Override
public View getView(int position, View convertView, ViewGroup parent){
Intent callIntent = new Intent(Intent.ACTION_CALL);
callIntent.setData(Uri.parse("tel:+"+text1 .trim()));
calIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); // you are starting intent out of the activity so you will need this.
_mContext.startActivity(callIntent);
}