가로 스크롤뷰 안에 이미지뷰를 구현하려고합니다.

<?xml version="1.0" encoding="utf-8"?>
<HorizontalScrollView xmlns:android="http://schemas.android.com/apk/res/android"
 android:id="@+id/scr"
    android:orientation="vertical"
    android:layout_width="wrap_content"
    android:layout_height="fill_parent"
    >
    <LinearLayout
     android:orientation="vertical"
     android:layout_width="fill_parent"
     android:layout_height="fill_parent"
     >
     <ImageView
      android:id="@+id/hello"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:src="@drawable/hello"
     />
    </LinearLayout>
</HorizontalScrollView>


XML에 이렇게 되어 있고 리니어 레이아웃과 이미지뷰가 없을땐 잘 실행됐었습니다.

리니어 레이아웃과 이미지뷰만 넣으면 죄송합니다 뜨면서 실행이 안되네요.

리니어 레이아웃 없이 이미지뷰만 넣어봤었는데 그때도 죄송합니다 떴습니다.

혹시 자바 코드에 HorizontalScrollView svw = (HorizontalScrollView)findViewById(R.id.scr); 말고 해줄것이 있나요?

아니면 뭐가 문제일까요 ㅠㅠ?

고수분들의 조언 부탁드립니다.