본문 바로가기

2-2/공학제

[공학제] TextView

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

'2-2 > 공학제' 카테고리의 다른 글

[공학제] ProgressDialog  (0) 2010.08.31