消除drawable和listview项之间的差距

时间:2013-01-17 06:28:15

标签: java android drawable gradient

使用自定义数组适配器

查看listview的图像

image showing problem

白色是我的可绘性 灰色是背景 如何在整个listview项目空间中拟合我的drawable渐变

我的档案......

activity_main.xml ....主要xml文件

MainActivity.java ....主要活动

Item.java ....项目选择器方法

ItemAdaptor ....自定义适配器

list_item.xml ..... item(textView)样式

drawable.xml

<shape xmlns:android="http://schemas.android.com/apk/res/android"
 android:shape="rectangle">
<gradient 
android:startColor="#FFFAFAFA" 
android:centerColor="#FFFFFFFF" 
 android:endColor="#FFFAFAFA" 
 android:angle="90"/>
</shape>

list_item.xml

    <?xml version="1.0" encoding="utf-8"?>
    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="?android:attr/listPreferredItemHeight"

    android:padding="6dip">



       <!-- Actual Item Name Data -->
     <TextView
        android:id="@+id/toptextdata"
        android:background="@drawable/shape"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:gravity="center"
        android:textSize="22sp"

        android:padding="20dp"
   />


</Rela....

0 个答案:

没有答案