0
如何實現以下功能?SlidingDrawer使用9補丁手柄圖像
第一張圖片顯示我想要達到的效果。第二個是我從佈局中獲得的最新結果。 注意我使用的圖像是從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>
您可能想要在'hierarchyviewer'中檢查您的活動,以查看規則是否正確應用以及保存到ImageView中的內容。就「fill_parent」將如何解釋而言,我對「ImageView」的「父」有些不確定。 – CommonsWare 2010-10-23 12:11:54