버튼에 대한 문제점이 나타나서요 ㅠㅠ
마진 값 말고 !!
android:gravity 속성으로는 변경이 안되나요??
이미지 첨부가 잘안되서 ㅠㅠ 밑에 링크로 해놨어요 ~
기존에 화면을 변경하고 싶은 화면을 바꾸고 싶은데 버튼에 대한 속성을 잘몰라서 그러는데 어떤 방법으로 해결해야 할까요??


기존 : http://www.ssju.co.kr/android/src2.gif
변경하고 싶은 화면 :  http://www.ssju.co.kr/android/src3.gif


현재 XML 구성 레이아웃 ~!!!

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
 android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical">

  <LinearLayout
   android:orientation="horizontal"
   android:layout_width="fill_parent"
      android:layout_height="wrap_content"
      android:background="#808080"
     >
     <Button
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:text="뒤로"
     />
     <Button
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:text="메모"
     />
     </LinearLayout>
 

<ScrollView
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    >
   
    <LinearLayout
     android:layout_width="fill_parent"
     android:layout_height="fill_parent"
     android:id="@+id/back"
    >
 <TextView 
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:id="@+id/tv"
    />
    </LinearLayout>
</ScrollView>

</LinearLayout>