我有一个 9-patch 图像,我想做的是使用它从应用程序中“分离”adMob 广告。我想在广告所在的位置画一条浅蓝色的线。
这是 9 补丁:
我将它作为 ImageView 添加到布局中,这是 XML 代码:
<ImageView
android:id="@+id/imageView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_above="@+id/adView"
android:layout_alignParentLeft="true"
android:layout_alignParentRight="true"
android:src="@drawable/ab_transparent_example" />
这是结果:
但我想要的是 9-patch 取屏幕的大小,从屏幕的左到右制作一条完整的蓝线。我以前从未使用过 9-patch,我做错了什么?