使用LayoutInflater将相同的视图相互多次添加

时间:2013-03-04 20:05:11

标签: android layout user-interface layout-inflater

我一直在制作一个简单的用户界面,其中显示了一些照片和其他一些信息! 我有一个简单的布局,用于在一个盒子中显示每张照片,我想多次添加这个布局dinamicaly(我有的照片数量)。

这是我的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视图时 - 所有视图都在彼此之上 - 但我想成为一个低于其他视图

1 个答案:

答案 0 :(得分:2)

只需使用您自己实施的ListView即可BaseAdapterArrayAdapter

查看getItemViewTypegetViewTypeCount。 如果您有两种不同类型的观看次数,请getViewTypeCount返回2getItemViewType(position) 01,具体取决于position处的元素

例如,您可以使用自定义适配器实现来为不同类型的对象扩充/重用不同的视图:

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 
}