SlidingDrawer를 가로 방향으로 사용하려고하면 핸들러와 내용 사이에 공백이 생깁니다. 내가 어떻게 그걸 없앨 수 있니? 수직 방향에서 나는 공간을 얻지 못한다.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>
SlidingDrawer 너비를 match_parent로 설정해 보셨습니까? –
layout_width를 match_parent로 변경해도 핸들러와 내용 간의 갭을 제거하지 못합니다. – Mokus
도움이 될지 모르겠지만 SlidingDrawer가 TabView의 내용에 추가되었다고 추가하고 싶습니다. – Mokus