如何实现以下目标?
第一张图片显示了我想要实现的结果。第二个是我从布局中获得的当前结果。 注意我正在使用的图片来自 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 :(得分:2)
找到它,使用 draw9patch 工具并将图像宽度设置为屏幕的水平尺寸。
答案 1 :(得分:2)
不确定你是否最终将水平宽度硬编码到屏幕上,但是我可以通过将layout_width设置为fill_parent并将scaleType设置为fitXY(这对于屏幕尺寸更为通用)来强制9补丁水平拉伸