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

    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="test" />

    <HorizontalScrollView 
 android:layout_width="wrap_content"
 android:layout_height="match_parent">
   
 <LinearLayout 
     android:layout_width="wrap_content"
     android:layout_height="match_parent"
     android:orientation="horizontal">
       
     <View 
      android:layout_width="800px"
        android:layout_height="match_parent"
      android:background="@android:color/transparent"/>
       <View 
       android:layout_width="800px"
       android:layout_height="match_parent"
       android:background="@android:color/black"/>
   </LinearLayout>
   
</HorizontalScrollView>
    

</FrameLayout>

FrameLayout에 Button과 HorizotalScrollView를 넣었는데요 ..
보시는 바와 같이 투명한 뷰 부분에서 버튼을 클릭하고 싶은데 
android:focusable="true"
android:focusableInTouchMode="true"를 줘도 도무지 되질 않네요 .. ㅠㅠ
구글링을 하여도 답답한 마음은 풀리질 않습니다. 비슷한 경험을 하셨던 분 계신가요 .. ?