应用程序崩溃改变布局参数

时间:2013-05-15 20:01:04

标签: android android-layout layout

我在scrollview中有一个linearlayout

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

并且在代码中我更改了scrollView的宽度和高度,而不是应用程序崩溃,我的更改代码是

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

                 return true;
             }

双击事件工作正常,logcat如下 enter image description here

1 个答案:

答案 0 :(得分:5)

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

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