Android ScrollView似乎无法识别其直接的孩子

时间:2013-05-09 09:20:54

标签: android scrollview

我正在使用ScrollView显示用户添加到购物车的所有产品。 我创建了一个滚动视图,在其中,我创建了一个线性布局'实习生'。 然后,我在循环中构建每一行。 这是XML

<ScrollView
    android:id="@+id/scroll"
    android:layout_width="300dp"
    android:layout_height="230dp"
    android:layout_marginLeft="10dp" >

    <LinearLayout 
        android:id="@+id/intern"
        android:orientation="vertical"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"></LinearLayout>
</ScrollView>

这是Java代码。

for(Carrello cns : carrello){

            LinearLayout prodotto = new LinearLayout(context);
            LinearLayout.LayoutParams lp = new LinearLayout.LayoutParams(/**/LinearLayout.LayoutParams.MATCH_PARENT, LinearLayout.LayoutParams.WRAP_CONTENT);
            prodotto.setLayoutParams(lp);
            //Product name
            TextView nome_p = new TextView(context);
            nome_p.setWidth(dpToPx(115));
            nome_p.setTextColor(getResources().getColor(R.color.grey));
            nome_p.setText(cns.getNomeProdotto());  /**/
            //Counts
            TextView quantita = new TextView(context);
            quantita.setWidth(dpToPx(80));
            quantita.setGravity(Gravity.CENTER);
            quantita.setTextColor(getResources().getColor(R.color.grey));
            quantita.setTextAppearance(context, R.style.quantita);
            quantita.setText(cns.getQuantita());  
            //Price
            TextView prezzo = new TextView(context);
            prezzo.setWidth(dpToPx(70));
            prezzo.setPadding(dpToPx(5), 0, 0, 0);
            prezzo.setTextColor(getResources().getColor(R.color.grey));
            prezzo.setTextAppearance(context, R.style.prezzo);
            prezzo.setText("€"+cns.getCosto());
            //Cancella
            Button canc = new Button(context);
            LinearLayout.LayoutParams lp_btn = new LinearLayout.LayoutParams(/*LinearLayout.LayoutParams.WRAP_CONTENT*/40,40/*LinearLayout.LayoutParams.WRAP_CONTENT*/);
            lp_btn.setMargins(0, dpToPx(10), 0, 0);
            canc.setLayoutParams(lp_btn);
            canc.setBackground(getResources().getDrawable(R.drawable.btn_canc));
            canc.setId(Integer.parseInt(cns.getIDprodotto()));/**/
            Log.d("ID-CANC",String.valueOf(canc.getId()));
            //create the line
            prodotto.addView(nome_p);
            prodotto.addView(quantita);
            prodotto.addView(prezzo);
            prodotto.addView(canc);
            intern.addView(prodotto);
            i++;
}//end for

然后,将intern添加到滚动视图中:

scroll.addView(intern);

但是当我运行模拟器时,logCat说“ScrollView只能托管一个直接子项”,应用程序崩溃了。

2 个答案:

答案 0 :(得分:2)

请勿使用scroll.addView(intern);

因为您已经在layout.xml中的SCrollView中定义了子项

请尝试如下。

LinearLayout intern = (LinearLayout) findViewById(R.id.intern);

然后使用for循环在intern

中添加视图

那就是......

无需为滚动调用addview

希望这有帮助

答案 1 :(得分:1)

ScrollView已经在布局文件中定义了一个子项。  scroll.addView(intern);会导致错误。

添加 循环前scroll=(ScrollView) findViewById(R.id.intern)并删除scroll.addView(intern);