在Custom ArrayAdapter中onClick时不显示新文本

时间:2012-12-19 04:07:31

标签: android listview android-arrayadapter

我自定义ListView使用ArrayAdapter。我在ListView的每个项目中都有一个像(我的语言中的'H​​ay')按钮。当我点击按钮时,它变为反对的不喜欢。

我单击该按钮,功能onClick回调,它不会立即显示更改返回上一个活动并返回显示。

我想点击按钮'Hay'(如同),'Hay'改变'BỏHay'(作为Dislike)和蓝色。但它立刻就是!请帮我!谢谢! (对不起,我的英语不好)。

Link image http://dl.dropbox.com/u/14415363/item.png

我的代码在这里: 它是Java - CustonArrayAdapter。

public class CustomArrayAdapter extends ArrayAdapter<LoiChucItem>{
Holder holder;
public CustomArrayAdapter(Context context, int textViewResourceId, List<LoiChucItem> objects)
{
    super(context, textViewResourceId, objects);
}

@Override
public View getView(int position, View convertView, ViewGroup parent)
{
    // holder pattern
    holder = null;
    if (convertView == null)
    {
        holder = new Holder();

        LayoutInflater layoutInflater = (LayoutInflater) getContext().getSystemService(Context.LAYOUT_INFLATER_SERVICE);
        convertView = layoutInflater.inflate(R.layout.loichuc_item_listview, null);
        holder.tvContent = (TextView) convertView.findViewById(R.id.tvContent);
        holder.btnLike = (Button) convertView.findViewById(R.id.btnLike);
        holder.btnMessage = (Button) convertView.findViewById(R.id.btnMessage);
        holder.btnShare = (Button) convertView.findViewById(R.id.btnShare);
        convertView.setTag(holder);
    }
    else
    {
        holder = (Holder) convertView.getTag();
    }

    holder.tvContent.setText(getItem(position).getContent());
    holder.btnLike = (Button) convertView.findViewById(R.id.btnLike);
    // Không điền trực tiếp vì không nên để position final.
    final int id = getItem(position).getId();
    final int like = getItem(position).getLike();
    if(like == 1){
        holder.btnLike.setTextColor(Color.BLUE);
    } else {
        holder.btnLike.setTextColor(Color.DKGRAY);
    }

    holder.btnLike.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            LoiChucOpenHelper.clickLike(id, like);
            if(like == 1){
                holder.btnLike.setTextColor(Color.DKGRAY);
            } else {
                holder.btnLike.setTextColor(Color.BLUE);
            }
            CustomArrayAdapter.this.notifyDataSetChanged();
        }

    });


    return convertView;
}

class Holder{
    TextView tvContent;
    Button btnLike;
    Button btnMessage;
    Button btnShare;
}

}

这里是xml文件:item_listview:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_margin="10dp"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical" 
android:background="#ffffff">

<TextView 

    android:id="@+id/tvContent"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_margin="10dp"
    android:text="Content"
    android:textSize="18sp"
    />
<LinearLayout 
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal" 

    >
    <Button 
        android:id="@+id/btnLike"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:drawableLeft="@drawable/rating_good"
        android:gravity="left|center_vertical"
        android:text="Hay"
        android:textSize="10sp"
        />
    <Button 
        android:id="@+id/btnMessage"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:drawableLeft="@drawable/social_send_now"
        android:gravity="left|center_vertical"
        android:text="Tin nhắn"
        android:textSize="10sp"
        />
    <Button 
        android:id="@+id/btnShare"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:drawableLeft="@drawable/social_share"
        android:gravity="left|center_vertical"
        android:text="Chia sẻ"
        android:textSize="10sp"
        />
</LinearLayout>

这是ListView

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:background="#a0a0a0" >

<ListView
    android:background="#a0a0a0"
    android:layout_margin="10dp"
    android:id="@android:id/list"
    android:layout_width="match_parent"
    android:layout_height="wrap_content" 
    android:divider="@android:color/transparent"
    android:dividerHeight="10dp"
    android:scrollbars="none"

    >
</ListView>

2 个答案:

答案 0 :(得分:0)

尝试使ListView无效。共享Activity / Fragment的代码会很有帮助。

答案 1 :(得分:0)

嘿,你可以使用ToggleButton非常简单,所以如果按下你的语言中的Like按钮(Hay),那么按钮Like(Hay)的颜色会将颜色改为绿色,它会显示不喜欢' Bo Hay'立刻感到不喜欢,请访问link

只做一件事

 <ToggleButton android:text="ToggleButton" android:id="@+id/toggleButton1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:textOn="Bo Hay" android:textOff="Hay">
            </ToggleButton>

它一定会对你有用。