循环中的 getLayoutInflater().inflate() 总是 returns 第一个视图
getLayoutInflater().inflate() in a loop always returns the first view
tics
有 3 个项目。以下代码创建了 3 个票证项目,但始终设置第一张票证的 TextView
的文本。
public void onSuccess(int i, Header[] headers, byte[] bytes) {
progress.dismiss();
String response = new String(bytes);
try{
JSONObject obj = new JSONObject(response);
JSONArray tics = obj.getJSONArray("tickets");
LinearLayout p = (LinearLayout)findViewById(R.id.tickets);
for(int j = 0;j<tics.length();j++){
LinearLayout t =(LinearLayout) getLayoutInflater().inflate(R.layout.ticket_row, p);
TextView topic = (TextView)t.findViewWithTag("topic");
TextView section = (TextView)t.findViewWithTag("section");
TextView datetime = (TextView)t.findViewWithTag("datetime");
JSONObject item = tics.getJSONObject(j);
Toast.makeText(getApplicationContext(),item.getString("Caption") ,Toast.LENGTH_LONG).show();
topic.setText(item.getString("Caption"));
datetime.setText(item.getString("DateString"));
section.setText(item.getString("Section"));
}
}catch (Exception e){}
}
在下面的代码中:
LinearLayout t =(LinearLayout) getLayoutInflater().inflate(R.layout.ticket_row, p);
不应该t
是膨胀的View
吗?
Shouldn't t be the inflated View?
不,您使用的版本将膨胀视图添加到父级,returns 是父级本身。你可以使用
View inflate (XmlPullParser parser,
ViewGroup root,
boolean attachToRoot)
提供 false 作为第三个参数。这样 android 将 return 膨胀视图(父视图仅用于布局参数)。您必须手动将其添加到父级。
tics
有 3 个项目。以下代码创建了 3 个票证项目,但始终设置第一张票证的 TextView
的文本。
public void onSuccess(int i, Header[] headers, byte[] bytes) {
progress.dismiss();
String response = new String(bytes);
try{
JSONObject obj = new JSONObject(response);
JSONArray tics = obj.getJSONArray("tickets");
LinearLayout p = (LinearLayout)findViewById(R.id.tickets);
for(int j = 0;j<tics.length();j++){
LinearLayout t =(LinearLayout) getLayoutInflater().inflate(R.layout.ticket_row, p);
TextView topic = (TextView)t.findViewWithTag("topic");
TextView section = (TextView)t.findViewWithTag("section");
TextView datetime = (TextView)t.findViewWithTag("datetime");
JSONObject item = tics.getJSONObject(j);
Toast.makeText(getApplicationContext(),item.getString("Caption") ,Toast.LENGTH_LONG).show();
topic.setText(item.getString("Caption"));
datetime.setText(item.getString("DateString"));
section.setText(item.getString("Section"));
}
}catch (Exception e){}
}
在下面的代码中:
LinearLayout t =(LinearLayout) getLayoutInflater().inflate(R.layout.ticket_row, p);
不应该t
是膨胀的View
吗?
Shouldn't t be the inflated View?
不,您使用的版本将膨胀视图添加到父级,returns 是父级本身。你可以使用
View inflate (XmlPullParser parser,
ViewGroup root,
boolean attachToRoot)
提供 false 作为第三个参数。这样 android 将 return 膨胀视图(父视图仅用于布局参数)。您必须手动将其添加到父级。