1

我创建了一个 listView,我可以将图像和文本放在 listView 中,并动态地将行添加到 listView。

但是我不明白如何实现我可以更改列表视图中的特定行项目布局?

例如,在活动开始时,我将用 5 行初始化 listView,当触发发生时(几分钟后)我想更改例如第四个 listView 项(仅更改第四个条目的布局,所有其他条目保留原始布局)

多谢

private  ListView lv;
private List<String> text = new ArrayList<String>();
private List<Bitmap> listImages;
private String freindsId;

ArrayList<String> text_sort = new ArrayList<String>();
ArrayList<Bitmap> image_sort = new ArrayList<Bitmap>();


private MyCustomAdapter adapter;
  adapter =new MyCustomAdapter(text,listImages);
  lv.setAdapter(adapter);

class MyCustomAdapter extends BaseAdapter{
          public   List<String> text_array = new ArrayList<String>();
          public   List<Bitmap> image_array = new ArrayList<Bitmap>();
          public int getCount(){
               return text_array.size();
          }

          MyCustomAdapter(List<String> text, List<Bitmap> image)
          {
           text_array = text;
           image_array = image;
          }
          public long getItemId(int position){
               return position;
          }
          public String getItem(int position){
               return null;
          }
          public View getView(final int position, View convertView, ViewGroup parent) {
            LayoutInflater inflate = getLayoutInflater();
            View v = inflate.inflate(R.layout.listview, parent, false);
            final ImageView image = (ImageView) v.findViewById(R.id.ImageView01);
            TextView txtUnderImage =(TextView) v.findViewById(R.id.TextView01);

             if(listImages.get(position) != null) {
                         Bitmap bitmap = image_array.get(position);
                        image.setImageBitmap(bitmap);
                        ByteArrayOutputStream stream = new ByteArrayOutputStream();
                        bitmap.compress(Bitmap.CompressFormat.PNG, 100, stream);
                        final byte[] byteArray = stream.toByteArray();

                         image.setOnClickListener(new View.OnClickListener() {

                            public void onClick(View v) {
                                // Switching to Register screen
                             Intent i = new Intent(getApplicationContext(), itemSaleActivity.class);
                             i.putExtra("picture", byteArray);
                            startActivity(i);


                                }
                        });
                         txtUnderImage.setText(text_array.get(position));
                         image.setVisibility(View.VISIBLE);
              } else {
                         image.setVisibility(View.GONE);
                         image.setImageBitmap(null);
                          image.setVisibility(View.VISIBLE);
          }
         return v;

        }
         public void addObject(String text, Bitmap bitmap) {
                text_array.add(text);
                image_array.add(bitmap);
            notifyDataSetChanged();
         } 

         public void addFirst(String text, Bitmap bitmap) {

                image_array.add(0,bitmap);
                text_array.add(0,text);

                notifyDataSetChanged();
             } 
         public void removeObject(String text,Bitmap bitmap) {

                int indexToRemove = image_array.indexOf(bitmap);
                image_array.remove(indexToRemove);
                text_array.remove(indexToRemove);
                notifyDataSetChanged();
         }
         public void deleteAll() {
             image_array.clear();
             text_array.clear();
             notifyDataSetChanged();
         }
    }
4

4 回答 4

0

尝试像这样获取您对特定位置的看法

getChildAt(position) 你会得到你的看法,

并更改行的布局并调用 notifyDataSetChanged()。

如果您尝试突出显示选定的行, 请在 Android 中使用 OnClickListener 中的此 Inflate ListView 行?

当事件触发您的适配器的更改数据并在适配器对象上调用 notifyDataSetChanged()。

于 2013-03-19T17:39:49.487 回答
0

使用该getChildAt()方法访问您要更改的任何行。例如listView.getChildAt(4)

于 2013-03-19T17:43:47.977 回答
0

对第四行项目进行更改。在适配器上调用 notifyDataSetChanged()。

notifyDataSetChanged() 通知附加的观察者底层数据已更改,任何反映数据集的视图都应自行刷新。

notifyDataSetChanged() 刷新您的列表视图。

于 2013-03-19T17:44:31.897 回答
0

此处描述的方法将查看整个列表,而您只需要更新可见的视图,其余更改将在“重绘”时得到注意。

因此,请查看THIS LINK提供的答案,它提供了一个解决方案,您只需要识别视图的位置,并且只有在当时可见时才能更新视图。

引用那个答案——

int iFirst = getFirstVisiblePosition();
int iLast = getLastVisiblePosition();

if ( indexToChange >= numberOfRowsInSection() ) {
    Log.i( "MyApp", "Invalid index. Row Count = " + numberOfRowsInSection() );
}
else {      
    if ( ( index >= iFirst ) && ( index <= iLast ) ) {
        // get the view at the position being updated - need to adjust index based on first in the list
        View vw = getChildAt( sysvar_index - iFirst );
        if ( null != vw ) {
            // get the text view for the view
            TextView tv = (TextView) vw.findViewById(com.android.myapp.R.id.scrollingListRowTextView );
            if ( tv != null ) {
                // update the text, invalidation seems to be automatic
                tv.setText( "Item = " + myAppGetItem( index ) + ". Index = " + index + ". First = " + iFirst + ". Last = " + iLast );
            }
        }
    }
} 
于 2015-06-28T20:31:08.843 回答