2010-10-23 153 views
0

如何實現以下功能?SlidingDrawer使用9補丁手柄圖像

ExpectedActual

第一張圖片顯示我想要達到的效果。第二個是我從佈局中獲得的最新結果。 注意我使用的圖像是從android 1.6 jar。

<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:orientation="vertical" 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent"> 
<SlidingDrawer 
    android:id="@+id/drawer" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:handle="@+id/handle" 
    android:content="@+id/content"> 

<ImageView 
    android:id="@id/handle" 
    android:src="@drawable/drawer_handle" 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent" /> 

<Button 
    android:id="@id/content" 
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 
    android:text="Button" /> 
</SlidingDrawer> 
</LinearLayout> 
+0

您可能想要在'hierarchyviewer'中檢查您的活動,以查看規則是否正確應用以及保存到ImageView中的內容。就「fill_parent」將如何解釋而言,我對「ImageView」的「父」有些不確定。 – CommonsWare 2010-10-23 12:11:54

回答

2

發現,所使用的draw9patch工具和圖像寬度設置在屏幕的水平尺寸。如果 alt text

2

不知道你結束了硬編碼的水平寬度爲屏幕,但我能夠迫使9補丁通過設置layout_width到FILL_PARENT和scaleType到fitXY(這是屏幕尺寸更通用的水平拉伸)