程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> scrollview-如何使用一個 LinearLayout 和現有的 TextViews 給一個 ScrollView 添加TextView?

scrollview-如何使用一個 LinearLayout 和現有的 TextViews 給一個 ScrollView 添加TextView?

編輯:編程綜合問答
如何使用一個 LinearLayout 和現有的 TextViews 給一個 ScrollView 添加TextView?

下面的代碼如下:一個map中有Strings如:["Color: blue","Size: big"] 調用 detailsArray。
現有的ScrollView有一個 LinearLayout 和現有的 TextViews:

<ScrollView>
    <LinearLayout>
        <TextView
            android:text="something: else"
        />
    </LinearLayout>
</ScrollView>

我已經確定了普通字段如寬,高,xml模式。
現在我想以程序化的方式添加textViews:

 TextView detail;
    LinearLayout llay = (LinearLayout)fragmentView.findViewById(R.id.container);    
    for (int i = 0; i < detailsArray.length; i++) {
                    detail = new TextView(fragmentView.getContext());
                    detail.setLayoutParams(new LayoutParams(LayoutParams.WRAP_CONTENT,LayoutParams.WRAP_CONTENT));
                    detail.setText(detailsArray[i]);
                    llay.addView(detail);
                }
        ScrollView sv = (ScrollView) fragmentView.findViewById(R.id.scroll_view);
        sv.addView(llay);

出現一個異常:

08-21 12:38:09.975: E/AndroidRuntime(3361): Caused by: java.lang.IllegalStateException: ScrollView can host only one direct child

如何修改?

最佳回答:


ScrollView can host only one direct child 

提示已經很明顯了!
問題原因,首先你在xml裡面已經給包裹了 一個LinearLayout,
現在有add了一個 那麼現在就是2個了  就報錯了 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved