소스는 이렇습니다....
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
 android:id="@+id/imagescroll"
 android:layout_height="wrap_content"
 android:layout_width="fill_parent"
 android:paddingBottom="100px"
 android:background="@drawable/background"

 >

<LinearLayout
     android:orientation="vertical"
     android:layout_width="fill_parent"
     android:layout_height="wrap_content"
     android:paddingRight="5px"
      android:paddingBottom="100px"
     >
     <RelativeLayout
     android:layout_width="wrap_content"
     android:layout_height="wrap_content"
     android:layout_weight="1"
     >
<TextView
 android:id="@+id/textview01"
 android:text="궁시렁"
 android:layout_width="wrap_content"
 android:layout_height="wrap_content"
 android:textSize="200px"
 />
 </RelativeLayout>
  <RelativeLayout
     android:layout_width="wrap_content"
     android:layout_height="wrap_content"
     android:layout_weight="3"
     >
     <TextView
 android:id="@+id/textview02"
 android:text="  "
 android:layout_width="wrap_content"
 android:layout_height="wrap_content"
 android:textSize="200px"
 />
 </RelativeLayout>


</LinearLayout>

</ScrollView>

이 그림처럼 이런식으로 하고 싶은데요...
스크롤바는 원하는 지점까지만 내려가는데
글씨가................... 저 밑까지 내려가버리네요;
텍스트뷰를 어떻게 해야할까요?
혹시나해서 두개로 나눠볼려고도 생각했는데... 이 방법도 아닌것 같아요ㅜㅜ
도움 좀 청할께요...ㅜㅜ

12312.bmp