2-2/공학제

[공학제] TextView

오잉OoO 2010. 8. 26. 19:36

<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
 android:layout_height="fill_parent"
 android:layout_width="fill_parent"
 android:background="@drawable/background"
 android:paddingBottom="100px">
 

 <LinearLayout
     android:orientation="vertical"
     android:layout_width="fill_parent"
     android:layout_height="fill_parent"
     android:paddingRight="5px"
     android:paddingBottom="100px" >
  <TextView
     android:layout_width="fill_parent"
     android:layout_height="800px"     //이부분 조절해서 해야겠다ㅠㅠ
     android:text="TextView 1" />

    
 </LinearLayout>
</ScrollView>