我尝试构建一个填充列表视图的异步任务。当我尝试,并与设置我的ListView与findViewBYId:无法访问我的异步任务
ListView lv = (ListView) ((View) c).findViewById(R.id.tastelist);
我得到这个错误:
Cannot cast from Context to View
我的整个异步任务类:
public class GetTasteJSON extends AsyncTask
<String, Void, String> {
Context c;
public GetTasteJSON(Context context)
{
c = context;
}
@Override
protected String doInBackground(String... arg0) {
// TODO Auto-generated method stub
return readJSONFeed(arg0[0]);
}
protected void onPostExecute(String result){
//decode json here
try{
JSONObject json = new JSONObject(result);
//acces listview
ListView lv = (ListView) ((View) c).findViewById(R.id.tastelist);
//make array list for beer
final List<BeerData> beerList = new ArrayList<BeerData>();
}
catch(Exception e){
}
}
public String readJSONFeed(String URL) {
StringBuilder stringBuilder = new StringBuilder();
HttpClient httpClient = new DefaultHttpClient();
HttpGet httpGet = new HttpGet(URL);
try {
HttpResponse response = httpClient.execute(httpGet);
StatusLine statusLine = response.getStatusLine();
int statusCode = statusLine.getStatusCode();
if (statusCode == 200) {
HttpEntity entity = response.getEntity();
InputStream inputStream = entity.getContent();
BufferedReader reader = new BufferedReader(
new InputStreamReader(inputStream));
String line;
while ((line = reader.readLine()) != null) {
stringBuilder.append(line);
}
inputStream.close();
} else {
Log.d("JSON", "Failed to download file");
}
} catch (Exception e) {
Log.d("readJSONFeed", e.getLocalizedMessage());
}
return stringBuilder.toString();
}
}
错误出现在表示'((View)c).findViewById(R.id.tasteList)'的行中。您的圆括号表示将上下文c转换为视图。也许尝试'((ListView)c.findViewById(R.id.tasteList))' – bbill
是的,当我只是为了c.finViewById eclipse告诉我把它转换到一个视图... – Mike
对。我编辑了我的评论。我认为Eclipse会在错误的位置添加演员。您应该只需要ListView强制转换的附加括号。 – bbill