引出しの中身を少し「はみ出す」(ハングアウト)にする方法は?
引っ張った後
XMLファイル内でそれを行う例を次に示します
<SlidingDrawer
android:id="@+id/drawer"
android:layout_width = "320dp" //set what ever dimensions you find appopriate
android:layout_height = "440dp"
android:orientation = "vertical"
android:handle="@+id/handle"
android:content="@+id/content">
<ImageView
android:id="@+id/handle"
android:layout_width="48dp" // Set your dimensions. This will be your handle
android:layout_height="48dp"
android:src="@drawable/putHandleImageHere" />
<TextView android:id="@+id/content"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text ="Hello World" />
---------------編集------------------質問を読み直しましたが、コンテンツをハングアウトさせようとしていることがわかりました。使ってみてください
android:paddingTop="10dp"
また
android:layout_marginTop="10dp"
それがうまくいったかどうか教えてください、頑張ってください。