이하와 같은.. ScrollView 안에 EditText 가 있는 경우 화면이 로딩될때 자동으로 키보드가 올라옵니다.. ㅜ
ScrollView 에 포커스 막거나.. 혹은 강제로 키보드를 내리고 싶은데...ㅜ
잘 안되네요.. ㅜ
혹시 해결하신 고수님들 계신가여?
Help me!


<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="480px"
    android:layout_height="553px"
    android:layout_x="0px"
    android:layout_y="131px"   
    android:scrollbarFadeDuration="0"
    android:focusable="false"
    android:id="@+id/scroll_screen">
<RelativeLayout
  android:layout_width="fill_parent" android:layout_height="wrap_content"
  android:layout_alignParentBottom="true">
<EditText
  android:id="@+id/sub1"
 android:layout_height="wrap_content"
 android:layout_width="280px"
 android:singleLine="true"
 android:layout_toRightOf="@+id/t1"
 android:hint="@string/hint_msg1"
 android:layout_marginLeft="10px"/>