我有一个简单LinearLayout
的 id content
。
我有另一个布局,一个相对的 (id = entry
)。根据 php 文件的响应,该相对值将被夸大数次。
问题是,如果我手动膨胀entry
布局 4 次,它工作正常。这是使用的代码:
LinearLayout content = (LinearLayout) Events.this.findViewById(R.id.content);
for (int i=0; i<4;i++){
RelativeLayout event = (RelativeLayout) mInflater.inflate(R.layout.event_entry, null);
content.addView(event);
}
但是现在,问题是我在 AsyncTask 上执行此操作时无法实现。
AsyncTask 本身工作正常。
PreExecute()
设置为什么都不做。OnBackground()
向托管在我的计算机上的 php 文件发出 http 请求,并且该 php 正在返回一个 json,其中包含来自名为Event
. 我将这些对象保存到 HashMap 中。Hashmap 已正确填写(调试:){1=Event@40dd9708, 0=Event@40dd9628}
。可以看到,Event 的两个对象在 HashMap 上。OnPostExecute()
包含此代码:protected void onPostExecute() { Log.d("debugging","Omplo llistat amb"+Events.this.events.toString()); LinearLayout content = (LinearLayout) Events.this.findViewById(R.id.content); for (int i=0; i<Events.this.events.size()+1;i++){ RelativeLayout event = (RelativeLayout) mInflater.inflate(R.layout.event_entry, null); Event eventDesat = Events.this.events.get(""+i); TextView title = (TextView) event.findViewById(R.id.title); title.setText(eventDesat.getTitle()); content.addView(event); } }
但它没有填充任何东西。
尝试过类似event.getParent().invalidate();
但结果相同的事情。
你明白发生了什么吗?我真的看不出第一个示例代码和下面的真实代码有什么区别。请注意,循环应该循环两次。
似乎永远不会触发 onPostExecute :
protected String doInBackground(String... args) {
// Building Parameters
List<NameValuePair> params = new ArrayList<NameValuePair>();
SharedPreferences settings = getSharedPreferences("login", MODE_PRIVATE);
int loggedin = settings.getInt("logged", 0);
if (loggedin == 0){
Events.this.finish();
}
String username = settings.getString("username", "");
String password = settings.getString("password", "");
params.add(new BasicNameValuePair("username", username));
params.add(new BasicNameValuePair("password", password));
// getting JSON string from URL
JSONObject json = jParser.makeHttpRequest(Events.this.urlWebRetrieveEvents, "POST", params);
// Check your log cat for JSON reponse
if (json!= null){
//Log.d("Debugging", json.toString());
try {
int success = json.getInt("success");
if (success == 1){
//this is filling hashmap correctly
Log.d("debugging","AQUI VAAA"+Events.this.events.toString());
}
} catch (Exception e){
//algo malo. no internet? perdudes les dades? Crec que mai hauriem d'entrar aquí.
}
}
return null;
}