0

我正在处理需要显示动态项目列表的布局。每个项目都有一个定义的 UUID、一个名称(横幅文本)、一个图像 URL 和一个布尔值来指示它是否被选中 - 我还创建了一个 POJO 来保存这些。我创建了一个自定义布局,将项目放在网格视图中,两个图标上带有横幅文本。它看起来像这样:

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >
  <RelativeLayout
    android:id="@+id/ItemLayout"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" >
    <ImageView
        android:id="@+id/ItemImage"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_alignParentTop="true"
        android:background="@android:color/transparent" />
    <ImageView
        android:id="@+id/ItemOverlayImage"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_alignParentTop="true"
        android:background="@android:color/transparent" />
    <TextView
        android:id="@+id/ItemTextBanner"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_margin="2dp"
        android:background="#BF000000"
        android:gravity="center"
        android:textStyle="bold" />
  </RelativeLayout>
</FrameLayout>

我还创建了自定义适配器和活动,我可以毫无问题地读取所有项目,下载图像并编码为位图并设置文本横幅。问题是如果单击该项目,我希望“选定”状态和图像发生变化。

我知道我可以添加GridView.setOnItemOnClickListenerand 里面我知道哪个项目被选中以及它来自父视图,但我不知道如何获得它的“选定”状态。 链接使用适配器中静态列表中的状态,并且是我所建模的。我添加了以下方法并从GridView.setOnItemOnClickListener.

public void itemSelected(View parent, int position)
{
    if(items.get(position).isSelected())
    {
        ImageView interestSelected = (ImageView)parent.findViewById(R.id.ItemOverlayImage);
        interestSelected.setImageResource(0);
    }
    else
    {
        ImageView interestSelected = (ImageView)parent.findViewById(R.id.ItemOverlayImage);
        interestSelected.setImageResource(R.drawable.overlay);          
    }
}

第一个问题很明显,我没有将状态保存到我的 items 数组中,但这是一个简单的解决方法。真正的问题是只有第一个项目得到覆盖。那么如何更改R.id.ItemOverlayImage所选 GridView 中的项目而不仅仅是第一个?还是我完全错了?

4

1 回答 1

1

关于您的代码的一些要点:

您可能只获得第一个带有覆盖的项目,因为您findViewById在父项上搜索,GridView而不是行视图view,因此findViewById将返回ImageView它找到的第一个项目(在第一个可见行上)。为了显示该叠加层,您可以根据您在适配器方法中使用的代码来选择如何执行此操作,如果getView您只想同时显示一个带有叠加层的项目(例如,当您单击一个项目时,前一个被点击的(如果有的话)将取消选择)或者如果你有切换项目的选项(点击->覆盖,另一次点击->没有覆盖)。在不知道上述信息的情况下,我会这样做:

public void onItemClick (AdapterView<?> parent, View view, int position, long id) {
     ImageView overlay = (ImageView) view.findViewById(R.id.ItemOverlayImage);
     if (!items.get(position).isSelected()) { // the item doesn't have an overlay
         overlay.setImageResource(R.drawable.overlay); // set the overlay
         items.setSelected(true); // set to true so the adapter knows it
     } else { // the item has the overlay so we remove it
         overlay.setImageResource(0);
         items.setSelected(false); set to false so the adapter knows it
     }
}

只要您在getView方法中使用isSelected设置或不设置叠加层就可以了。

此外,您应该删除FrameLayout包装 的RelativeLayout,因为您不对其进行任何操作(?!?)。

于 2012-08-23T05:44:29.480 回答