좀... 터무니 없을지 모르겠지만...
다음과 같은 xml이 있는데... 어디가 문제인지 모르겠습니다...
이클립스에서의 에러는 발생하지 않는데..
실 기기(모토로이)에 올려놓고 실행하면
예상치 않게 중지되었습니다... 이런 메시지가 나와서요.......


<?xml version="1.0" encoding="utf-8"?>

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"

    android:orientation="vertical"

    android:layout_width="fill_parent"

    android:layout_height="fill_parent"

    android:id="@+id/scView"

    >

    

    <LinearLayout

    android:id="@+id/llMain"

    >


<LinearLayout

android:id="@+id/llHeader"

android:layout_width="fill_parent"

android:layout_height="200px"

>

<Button

android:text="Header Button"

/>

</LinearLayout>


    <ScrollView

    android:id="@+id/scMain"

android:layout_width="fill_parent"

    android:layout_height="500px"

    >

    </ScrollView>

   

   

    <LinearLayout

    android:id="@+id/llBottom"

android:layout_width="fill_parent"

android:layout_height="200px"

    >

    <Button

    android:text="Bottom Button" 

    />

    </LinearLayout>



    </LinearLayout>

</ScrollView>