在" Include"后面添加一个ImageView。 XML中的项目

时间:2015-08-07 12:00:06

标签: java android

我有几张图片的水平滚动条。我有它自己的XML文件,只处理滚动,现在我想在这些可滚动项后面添加一个图像(不应该是背景的大小),以便图像在可滚动图像之间和之后可见?

我该怎么做呢?

enter image description here

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
          android:orientation="horizontal"
          android:layout_width="match_parent"
          android:layout_height="0dp">


<include
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    layout="@layout/dotw_scrollable"/>
</LinearLayout>

我必须以编程方式添加背景,因为这是一个动态图像

1 个答案:

答案 0 :(得分:1)

将您的布局更改为以下内容:

<RelativeLayout 
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="horizontal"
    android:layout_width="match_parent"
    android:layout_height="0dp">
    <ImageView
        android:id="@+id/my_background"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content">
        <ImageView>
    <include
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        layout="@layout/dotw_scrollable"/>
    </RelativeLayout>