我一直在研究一个简单的UI,其中显示了一些照片和一些其他信息!
我有一个简单的布局,可以在一个盒子中显示每张照片,并且我想多次添加此布局(我拥有的照片数量)。

这是我的info_wrapper.xml文件

 <?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/info_wrapper"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:paddingTop="2dp"
    android:paddingBottom="2dp"
    android:paddingLeft="1dp"
    android:paddingRight="1dp"
    >

    <TextView
        android:id="@+id/usernamePosting"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Hello"/>

    <ImageView
        android:below="@+id/usernamePosting"
        android:id="@+id/photo"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Hello"/>

</RelativeLayout>


还有我的main_screen.xml文件:

    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="wrap_content"
    android:layout_height="match_parent" >

    <RelativeLayout
        android:id="@+id/menuBar"
        android:layout_width="fill_parent"
        android:layout_height="20dp"
        android:background="@color/green">

        <ImageView
            android:id="@+id/locationIcon"
            android:layout_width="wrap_content"
            android:layout_height="fill_parent"
            android:src="@drawable/location_place"
            ></ImageView>

        <TextView
            android:id="@+id/userLocationTxtView"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerInParent="true"
            android:layout_toRightOf="@+id/locationIcon"
            android:text="@string/app_name"
            android:textColor="@color/white"
            android:textSize="15dp" />

    </RelativeLayout>

    <RelativeLayout
        android:layout_below="@id/menuBar"
        android:id="@+id/bodyView"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:background="@color/light_gray">


    </RelativeLayout>

</RelativeLayout>


现在,当我尝试多次添加info_wrapper视图时-所有视图都彼此重叠-但我想成为另一个视图

最佳答案

只需在您自己的实现中使用ListView BaseAdapterArrayAdapter

看一下getItemViewTypegetViewTypeCount
如果您有两种不同类型的视图,请使getViewTypeCount返回2getItemViewType(position) 01取决于在position处的元素。

例如,您可以有一个自定义的Adapter实现,可以为不同类型的对象扩展/重用不同的视图:

class ExampleAdapter extends BaseAdapter
{
    [...]
    View getView(int position, View convertView, ViewGroup parent)
    {
        Object o = getItemFromSomeDataSource(position);
        if(o instanceof Type1)
        {
            if(convertView == null)
            {
                convertView = inflater.inflate(item_layout_1);
                [...]
            }
            else
            {
                [...] // reuse existing View
            }
        }
        else if(o instanceof Type2)
        {
            [...]
        }
            [...]
    }
    int getViewTypeCount(){ return n; } // where n = no. of different types to display
    int getItemViewType (int position){ [...] } // mapping of item-position and item-type
}

10-06 05:52