1

我在滚动视图中有一个线性布局

    <ScrollView 
       android:id="@+id/scrollID"
        android:layout_width="match_parent"
        android:layout_height="80dip"
        android:visibility="gone"
        android:background="@android:color/darker_gray"
        android:hapticFeedbackEnabled="true"
    >
<LinearLayout 
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical"
        android:background="@android:color/black"
        android:id="@+id/showInfoLayout"> 
      </LinearLayout>
                 </ScrollView>

在代码中我更改滚动视图的宽度和高度而不是应用程序崩溃我的更改代码是

     @Override
             public boolean onDoubleTap(MotionEvent e) {
                 routeScrollView.setLayoutParams(new ViewGroup.LayoutParams(
ViewGroup.LayoutParams.MATCH_PARENT,
ViewGroup.LayoutParams.WRAP_CONTENT));

                 return true;
             }

双击事件工作正常,logcat 如下 在此处输入图像描述

4

1 回答 1

5

1) 你的 LinearLayout 的 layout_height 应该包含内容

2) 将 ViewGroup.LayoutParams 替换为 (TypeOfScrollViewParent).LayoutParams

于 2013-05-15T20:30:25.893 回答