0

感谢您的帮助。

我有一个 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>

在运行时,我以编程方式将 TextViews 添加为 LinearLayout 上的子项

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);

                    }

                }

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

在此处输入图像描述

非常感谢您的帮助!!!

4

1 回答 1

1

将您的ScrollView高度设置为wrap_contentScrollView需要能够大于它的父级才能滚动。

于 2013-08-30T18:49:17.893 回答