Android - 重用膨胀的视图

时间:2012-07-03 10:01:55

标签: android layout-inflater

以下是我想重复使用的布局

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="wrap_content"
    android:layout_height="fill_parent"
    android:id="@+id/widget_layout"
    android:layout_weight="1"
    android:padding="5dip"
    android:layout_margin="2dip"
    android:background="@drawable/round_corners"
    android:orientation="vertical" >

    <TextView
        android:id="@+id/widget_title"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:hint="New Source"
        android:textStyle="bold" />

</LinearLayout>

我在我的活动onCreate方法中使用它如下

protected void onCreate(Bundle savedInstanceState) {
    // TODO Auto-generated method stub
    super.onCreate(savedInstanceState);
    setContentView(R.layout.widget_container_layout);
    LayoutInflater inflater =  getLayoutInflater();
    HorizontalScrollView news_scroll = (HorizontalScrollView)findViewById(R.id.news_scroll);
    LinearLayout newsContainer = (LinearLayout) inflater.inflate(R.layout.scroll_layout, null);
    TextView widgetTitle;
    LinearLayout widget_layout;

    for(int i = 0; i < 6; i++) {
        widget_layout = (LinearLayout) inflater.inflate(R.layout.widget_layout, 
        newsContainer).findViewById(R.id.widget_layout);
        widgetTitle = (TextView)(widget_layout.getChildAt(0));
        widgetTitle.setText("New Source " + i);
    }

    news_scroll.addView(newsContainer);
}

所以我将名为widget_layout的线性布局添加到我的newsContainer线性布局中6次。但是文本反映不正确。

我希望看到6个带有文字的文本框

  

New Source 0 New Source 1 New Source 2 New Source 3 New Source 4 New Source 5

但我得到的输出是

  

新源5新源0新源0新源0新源0新源0

1 个答案:

答案 0 :(得分:1)

widget_layout中所有夸大的news_container具有相同的ID。看起来循环中的findViewById没有返回最后添加的小部件,而只返回具有该ID的一些小部件。 相反,尝试使用null parent对窗口小部件进行膨胀,然后将其添加到容器中。 像这样:

for() {
    widget_layout = (LinearLayout) inflater.inflate(R.layout.widget_layout, null);
    widgetTitle...
    news_container.addView(widget_layout);
}

检查LinearLayout的addView以获取更多信息和选项。