更新ListView ArrayAdapter中的图像

问题描述 投票:0回答:1

不知道是否有人能帮助我--我有一个自定义的ArrayAdapter,它显示了一个对象列表(在这种情况下,"资产"。List<Asset>). 我希望能够在ListView中更新一个使用该适配器的项目(没有onClick事件)。具体来说,我有一个在后台进行的蓝牙扫描,我想更新ListView行中通过蓝牙看到的Asset的图像。谁能解释一下我如何做到这一点?

这是我在适配器中的行布局。

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="?android:attr/activatedBackgroundIndicator"
    android:orientation="horizontal">
    <ImageView
        android:layout_width="wrap_content"
        android:layout_height="60dip"
        android:layout_margin="5dip"
        android:src="@drawable/logo" // <--- I want to change this image src when the asset was seen
        android:adjustViewBounds="true"
        android:id="@+id/icon"/>
    <LinearLayout
        android:layout_width="0dp"
        android:layout_weight="1"
        android:layout_height="wrap_content"
        android:layout_marginLeft="6dip"
        android:orientation="vertical">
        <TextView android:id="@+id/text1"
            android:textStyle="bold"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:textSize="@dimen/text_size_normal"
            android:textColor="#000000"
            android:text="Test name"
            />

        <TextView android:id="@+id/text2"
            android:textSize="@dimen/text_size_small"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:textColor="#333333"
            android:text="Test address"
            />
        <TextView android:id="@+id/text3"
            android:textSize="@dimen/text_size_small"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:textColor="#333333"
            android:text="Temperature: 12. Battery: 14"
            />

    </LinearLayout>

</LinearLayout>

和我的自定义适配器。

    adapter = new ArrayAdapter(getBaseContext(), R.layout.three_line_list_item_with_icon, R.id.text1, assets) {
        @Override
        public View getView(int position, View convertView, ViewGroup parent) {
            View view = super.getView(position, convertView, parent);
            TextView text1 = (TextView)view.findViewById(R.id.text1);
            TextView text2 = (TextView)view.findViewById(R.id.text2);
            TextView text3 = (TextView)view.findViewById(R.id.text3);

            ImageView iv = (ImageView)view.findViewById(R.id.icon);
            iv.setImageResource(R.drawable.smartie_logo);

            Asset thisAsset = assets.get(position);
            text1.setText(thisAsset.name);
            text2.setText("Unseen");
            text3.setText("");

            if (position % 2 == 0) {
                view.setBackgroundResource(R.drawable.table_dark);
            } else {
                view.setBackgroundResource(R.drawable.table_light);
            }
            return view;
        }
    };

然后我有一个函数,当资产被看到时就会运行。

void UpdateAssetRow(Asset asset) {
    // Do something here to update the image in the specific row containing this asset
    adapter.notifyDataSetChanged();
}
java android android-listview android-arrayadapter
1个回答
0
投票

请忽略这个答案,因为我不能删除它!

© www.soinside.com 2019 - 2024. All rights reserved.