Android:ListView项目中的tile位图

时间:2014-02-27 10:31:41

标签: android listview background bitmap tile

我正在尝试将侧边栏图像添加到ListView中的某些项目。 图像应占据项目的整个高度,并在必要时垂直重复。 拉伸图像不是一种选择。

尝试了一些事情后,我最终修改了找到的代码here。 不幸的是,它似乎不能在ListView中工作,图像不会重复:

enter image description here

主要布局:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context=".MainActivity" >

    <ListView
        android:id="@+id/list"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
       />
</RelativeLayout>

ListView项目布局:

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

    <LinearLayout 
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:background="@drawable/background"
        android:orientation="vertical">
    <ImageView
        android:id="@+id/listitem_sidebar"
        android:layout_width="wrap_content"
        android:layout_height="match_parent"       
        android:src="@drawable/sidebar"
        android:visibility="invisible"/>    
    </LinearLayout>
    <TextView 
        android:id="@+id/textview"
        android:layout_width="wrap_content"
        android:layout_height="400dp"
        android:text="Test"
        android:layout_alignParentRight="true"/>
</RelativeLayout>

背景可绘制:

<?xml version="1.0" encoding="utf-8"?>
<bitmap xmlns:android="http://schemas.android.com/apk/res/android"
    android:src="@drawable/sidebar"
    android:tileMode="repeat" />

背景图片:

enter image description here

为整个ListView设置全局侧边栏不是一个选项,因为我在生产代码中使用不同的View类型。

修改:格式化

1 个答案:

答案 0 :(得分:1)

下车,终于让它按照我想要的方式工作了。我在TextView下面添加了一个透明视图,强制ListView测量项目的高度并进行布局传递。然后我使用隐形视图作为我的侧栏的锚点。

唯一需要修改的文件是listview_item.xml:

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

    <TextView 
        android:id="@+id/textview"
        android:layout_width="wrap_content"
        android:layout_height="400dp"
        android:layout_alignParentRight="true"
        android:text="Test"/>
    <View
        android:id="@+id/dummy"
        android:layout_below="@id/textview"
        android:layout_width="match_parent"
        android:layout_height="0dp"/> 

        <LinearLayout 
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:background="@drawable/background"
        android:layout_alignParentTop="true"
        android:layout_above="@id/dummy"
        android:orientation="vertical">
    <ImageView
        android:id="@+id/listitem_sidebar"
        android:layout_width="wrap_content"
        android:layout_height="match_parent"               
        android:src="@drawable/sidebar"
        android:visibility="invisible"/>    
    </LinearLayout>
</RelativeLayout>

以下是结果的屏幕截图:

enter image description here

我删除了之前解决方法的代码,因为它比任何东西都更糟糕,而且效果不如此。