同一个活动中的多个视图

时间:2015-10-26 10:59:05

标签: java android android-activity layout swipe

我正在开发类似Tinder的Android应用程序,我正在使用this库来实现刷卡功能。 对于滑动屏幕,我使用此布局:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:tools="http://schemas.android.com/tools"
        style="@style/BackgroundStyle"
        android:padding="16dp">
        <RelativeLayout
            android:layout_width="fill_parent"
            android:layout_height="fill_parent">
                <com.lorentzos.flingswipe.SwipeFlingAdapterView
                    xmlns:android="http://schemas.android.com/apk/res/android"
                    xmlns:app="http://schemas.android.com/apk/res-auto"
                    android:layout_width="match_parent"
                    android:layout_height="match_parent"
                    app:rotation_degrees="16"
                    app:max_visible="2"
                    app:min_adapter_stack="1"
                    android:id="@+id/swipeView"/>
        </RelativeLayout>
        <fragment
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_alignParentBottom="true"
            android:id="@+id/tabmenu"/>

</RelativeLayout>

并在活动中对其进行充气:

protected void onCreate(final Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_swipe);
    ...

我现在正计划添加不同类型的卡(具有不同的设计),并且面临着为同一活动使用多个视图的问题。 例如,一张卡上会有一个人。另一张卡片可能有问题等。在同一活动中是否有任何智能方式使用不同的视图?预期的功能是你看到4-5张牌上有人,然后你看到一张带有问题/反馈请求的卡,然后你应该再看到人,等等。

Swipe库使用ArrayAdapter来保存代表卡片的对象,卡片的布局由getView()函数给出:

public View getView(int position, View convertView, ViewGroup parent) {
        LayoutInflater inflater = (LayoutInflater) context
                .getSystemService(Context.LAYOUT_INFLATER_SERVICE);
        View rowView = inflater.inflate(R.layout.cardlayout, parent, false);
        ...

有没有办法根据某些输入/属性加载不同的视图?

干杯!

1 个答案:

答案 0 :(得分:0)

当然有可能。

从适配器

检查这两种方法
  • getViewTypeCount()

      

    返回将由其创建的视图类型的数量   getView(int,View,ViewGroup)。

  • getItemViewType(int position)

      

    获取将由getView创建的视图类型(int,View,   ViewGroup)指定的项目。

覆盖getViewTypeCount并设置适配器的不同视图数。并在getItemViewType中检查您的项目,并返回该项目的类型。

你可以像这样使用它

// Using two different layouts 
@Override
public int getViewTypeCount()
{
    return 2;
}

// Get the type of item  
@Override
public int getItemViewType(int position)
{
    if (arrayList.get(position).isUserType())
    {
        return ITEM_USER;
    }
    else
    {
        return ITEM_PHOTO;
    }
}

@Override
public View getView(int position, View convertView, ViewGroup parent)
{
    if (getItemViewType(position) == ITEM_USER)
    {
        // Inflate first layout
    }
    else
    {
        // Inflate second layout
    }
}

如果您需要任何进一步的帮助/解释,请与我们联系。