为什么这个ScrollView不滚动?

时间:2013-08-30 18:19:40

标签: android

感谢您的帮助。

我有一个GridView。

GridView的每个项目都包含以下布局:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@android:color/black"
android:padding="2dip" >

<TextView
    android:id="@+id/date"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentRight="true"
    android:layout_alignParentTop="true"
    android:text="29"
    android:textColor="@android:color/white"
    android:textSize="14dip"
    android:textStyle="bold" />

<ScrollView
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:layout_alignParentBottom="true"
    android:layout_alignParentLeft="true"
    android:layout_below="@+id/date" >

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

在运行时,我在LinearLayout

上以编程方式添加TextViews作为子项
ll = (LinearLayout) v.findViewById(R.id.layout);
for (int j = 0; j < eventi.size(); j++) {
                    if (eventi.get(j).day.equalsIgnoreCase(date)) {
                        TextView tv = new TextView(mContext);
                        tv.setText("■ "+eventi.get(j).title);
                        tv.setTextSize((parent.getHeight() / (getCount() / 7)/15));
                        tv.setTextColor(mContext.getResources().getColor(R.color.darkbluetheme));
                        ll.addView(tv);

                    }

                }

但是在单元格中没有滚动发生。

enter image description here

非常感谢你的帮助!!!

1 个答案:

答案 0 :(得分:1)

ScrollView身高设置为wrap_content。 <{1}}需要能够比它的父级更大才能滚动。