SlidingDrawer を水平方向で使用しようとすると、ハンドラーとコンテンツの間にスペースができます。どうすればそれを取り除くことができますか?垂直方向では、スペースがありません。
<SlidingDrawer
android:id="@+id/module_trafic_map_drawer"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:orientation="horizontal"
android:topOffset="0dp"
android:bottomOffset="0dp"
android:handle="@+id/module_trafic_map_handle"
android:content="@+id/module_trafic_map_content">
<ImageView
android:id="@id/module_trafic_map_handle"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:src="@drawable/trafic_info_popup_right"
/>
<WebView
android:id="@+id/module_trafic_map_content"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>
</SlidingDrawer>