我问了问题here。现在我可以将arraylist传递给另一个活动。
在我的第二次活动中,我试图发布这个arraylist。
ArrayList<com.example.ss.myapp.BasicNameValuePair> testing = this.getIntent().getParcelableArrayListExtra("extraextra");
HttpClient httpclient1 = new DefaultHttpClient();
HttpPost httppost1 = new HttpPost(url);
httppost1.setEntity(new UrlEncodedFormEntity((List<? extends org.apache.http.NameValuePair>) testing));
我收到错误:incompatible types: ArrayList<BasicNameValuePair> cannot be converted to List<? extends NameValuePair>
如何将ArrayList<com.example.ss.myapp.BasicNameValuePair> testing
投射到ArrayList<NameValuePair> testing
?
答案 0 :(得分:1)
NameValuePair
应该引用此link。根据您的链接,您的班级不会延长NameValuePair
。为此,您需要更改代码:
public class BasicNameValuePair extends NameValuePair implements Parcelable {
并根据需要实施/覆盖所有必要的方法。