我试图在listview项目中创建一个9patch背景,但由于我用9patch修改了图像,背景是拉伸的,所以我看不到整个图像。 这是我修改过的图像:
这是我的item.xml代码:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/toggle"
android:gravity="center"
android:orientation="vertical" >
<TextView
android:id="@+id/item_title"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center|left"
android:textColor="@android:color/black" />
</LinearLayout>
和我的切换选择器根据列表项状态显示正确的图像:
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_pressed="true" android:drawable="@drawable/item_normal"></item>
<item android:state_selected="true" android:drawable="@drawable/item_selected"></item>
<item android:state_focused="true" android:drawable="@drawable/item_normal"></item>
<item android:state_activated="true" android:drawable="@drawable/item_selected"></item>
<item android:state_activated="false" android:drawable="@drawable/item_normal"></item>
<item android:state_active="true" android:drawable="@drawable/item_selected"></item>
<item android:state_active="false" android:drawable="@drawable/item_normal"></item>
</selector>
但不是背景中的完整图像我得到了这个:
有谁知道如何解决这个问题?
答案 0 :(得分:0)
像下面一样创建Ninepatch图像.... 那可能对你有用........... 我无法删除Corners所以 IGNORE IT ...
请注意,黑线用于图像拉伸....... 这里...
左_top:用于渲染图像..... 右下:用于设置文本设置的内容区域......