- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
在我的应用程序中,我在标签 fragment
中有一个 listview
。 listview
的每一行都是一个 cardview
,其中有多个 View 。(Buttons
,textviews
等)我为此 listview
创建了一个自定义 adapter
类。
此适配器
类从本地数据库获取数据并将其插入cardview
中的不同 View
,创建卡片列表。我在 cardview
中有一个赞按钮。
现在,当用户按下“赞”按钮时,我正在使用适配器类中的按钮上的 onClickListener
更改按钮的背景。
问题是,如果我按下一张卡片上的赞按钮,它将更改该卡片上赞按钮的背景以及列表中第四张卡片上赞按钮的背景。我认为这与我正在使用的 ViewHolder
模式有关,但不确定如何修复它。
这是自定义适配器类
package com.example.nxtstepz.nxtstepzone.Adpters;
import android.content.Context;
import android.content.Intent;
import android.database.sqlite.SQLiteDatabase;
import android.util.Log;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ArrayAdapter;
import android.widget.BaseAdapter;
import android.widget.Button;
import android.widget.LinearLayout;
import android.widget.Switch;
import android.widget.TextView;
import android.widget.Toast;
import com.example.nxtstepz.nxtstepzone.Communicater.Communicater;
import com.example.nxtstepz.nxtstepzone.PostDetailActivity;
import com.example.nxtstepz.nxtstepzone.PostInfo;
import com.example.nxtstepz.nxtstepzone.R;
import java.util.List;
import de.greenrobot.dao.query.QueryBuilder;
import nxtstepz.DaoMaster;
import nxtstepz.DaoSession;
import nxtstepz.Post;
import nxtstepz.PostDao;
import nxtstepz.SavedPost;
import nxtstepz.SavedPostDao;
/**
* Created by Prathya on 6/8/2015.
*/
public class HomeScreenNewsFeedAdapter extends ArrayAdapter<PostInfo>{
List<PostInfo> data;
Context context;
int layoutid;
public HomeScreenNewsFeedAdapter(Context context, int layoutid, List<PostInfo> data) {
super(context, layoutid);
this.context=context;
this.data=data;
this.layoutid=layoutid;
}
@Override
public int getCount() {
return data.size();
}
@Override
public long getItemId(int position) {
return 0;
}
private class PostHolder{
TextView postusername,autherinstitute,postheading,postdescription,likecount,comments,date,category;
View save,like;
LinearLayout postdetail;
}
@Override
public View getView(int position, View convertView, ViewGroup parent) {
DaoMaster.DevOpenHelper helper = new DaoMaster.DevOpenHelper(context,"nxtstepz",null);
SQLiteDatabase db =helper.getWritableDatabase();
DaoMaster daoMaster = new DaoMaster(db);
DaoSession session = daoMaster.newSession();
final PostDao postDao = session.getPostDao();
final PostHolder holder;
View v= convertView;
if(v==null){
LayoutInflater li = LayoutInflater.from(context);
v= li.inflate(layoutid,parent,false);
holder = new PostHolder();
holder.postusername = (TextView)v.findViewById(R.id.postusername);
holder.autherinstitute= (TextView)v.findViewById(R.id.autherinstitute);
holder.postheading = (TextView)v.findViewById(R.id.post_title);
holder.postdescription = (TextView)v.findViewById(R.id.post_description);
holder.likecount = (TextView)v.findViewById(R.id.like_count);
holder.comments = (TextView)v.findViewById(R.id.comment_count);
holder.date = (TextView)v.findViewById(R.id.post_datetime);
holder.category = (TextView)v.findViewById(R.id.post_category);
holder.save=v.findViewById(R.id.save_button);
holder.like= v.findViewById(R.id.like_button);
holder.postdetail=(LinearLayout)v.findViewById(R.id.ll3);
v.setTag(holder);
}
else {
holder= (PostHolder)v.getTag();
}
final PostInfo post;
post = data.get(position);
Log.d("post id", String.valueOf(post.posttypeid));
holder.postusername.setText(post.postusername);
holder.autherinstitute.setText(post.autherinstitutename);
holder.postheading.setText(post.postheading);
holder.postdescription.setText(post.postdescription);
holder.likecount.setText(""+post.likecount);
holder.comments.setText("" + post.comments);
holder.category.setText(post.categoryname);
holder.date.setText(post.date);
holder.like.setOnClickListener(new View.OnClickListener() { //this method has the problem
@Override
public void onClick(View v) {
if (post.postlikeflag == 0) {
holder.like.setBackgroundResource(R.drawable.liked);
post.postlikeflag =1;
} else {
holder.like.setBackgroundResource(R.drawable.like);
post.postlikeflag = 0;
}
}
});
holder.postdetail.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Intent eventDetail = new Intent(context, PostDetailActivity.class);
eventDetail.putExtra("EventDetail", post);
context.startActivity(eventDetail);
}
});
return v;
}
}
这里是single_card_view.xml
<FrameLayout 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="wrap_content"
android:background="#BDBDBD">
<android.support.v7.widget.CardView
xmlns:card_view="http://schemas.android.com/apk/res-auto"
android:id="@+id/homecardview"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="10dp"
card_view:cardCornerRadius="4dp"
card_view:cardElevation="4dp">
<LinearLayout
android:id="@+id/ll2"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<ImageView
android:id="@+id/imgIcon"
android:layout_width="50dp"
android:layout_height="50dp"
android:layout_alignParentBottom="true"
android:layout_alignParentTop="true"
android:layout_margin="10dp"
android:src="@drawable/img8" />
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_marginTop="10dp"
android:gravity="left"
android:orientation="vertical">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/postusername"
android:gravity="left"
android:text="Jessica Alba"
android:textSize="18sp"
android:textStyle="bold" />
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="left"
android:id="@+id/autherinstitute"
android:text="Mahatma audkjfsdk dkbldvb"
android:singleLine="true"
android:ellipsize="end"
android:textSize="13sp"
android:textStyle="italic"
android:scrollHorizontally="true"/>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginTop="10dp"
android:orientation="vertical">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="top|right"
android:layout_marginRight="10dp"
android:text="38 min"
android:id="@+id/post_datetime"/>
<TextView
android:id="@+id/post_category"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom|right"
android:layout_marginTop="10dp"
android:background="#9C27B0"
android:padding="5dp"
android:text=""
android:textColor="#ffffff"
android:textStyle="bold|italic" />
</LinearLayout>
</LinearLayout>
<LinearLayout
android:id="@+id/ll3"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<TextView
android:id="@+id/post_title"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#00b5ad"
android:gravity="center|left"
android:padding="5dp"
android:text="Sri-Ram breakup party"
android:textColor="#ffffff"
android:textSize="15dp"
/>
<TextView
android:id="@+id/post_description"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="5dp"
android:layout_marginTop="1dp"
android:background="#ffffff"
android:gravity="top|left"
android:padding="5dp"
android:text="Monica is an Italian actress and model who recently broke up with Sriram started her modelling career at the age of 13 by posing for a local photo enthusiast. Android:The Best OS.Android powers hundreds of millions of mobile devices in more than 190 countries around the world.Android's openness has made it a favorite for consumers"
android:textSize="10dp" />
</LinearLayout>
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:layout_margin="2dp"
android:background="#000000"></View>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:padding="5dp">
<View
android:id="@+id/like_button"
android:layout_width="40dp"
android:layout_height="40dp"
android:layout_marginLeft="10dp"
android:background="@drawable/like"
android:focusable="false"
android:focusableInTouchMode="false">
</View>
<View
android:layout_width="30dp"
android:layout_height="30dp"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:background="@drawable/comment"
android:id="@+id/comment_button"></View>
<View
android:layout_width="45dp"
android:layout_height="30dp"
android:layout_alignParentEnd="true"
android:layout_alignParentRight="true"
android:layout_alignTop="@+id/view"
android:id="@+id/save_button"
android:background="@drawable/save"></View>
<TextView
android:layout_width="wrap_content"
android:layout_height="40dp"
android:padding="6dp"
android:text="0"
android:gravity="center"
android:id="@+id/like_count"
android:background="#FFECB3"
android:layout_alignTop="@+id/like_button"
android:layout_toRightOf="@+id/like_button"
android:layout_toEndOf="@+id/like_button"
/>
<TextView
android:layout_width="wrap_content"
android:layout_height="40dp"
android:padding="6dp"
android:text="0"
android:gravity="center"
android:id="@+id/comment_count"
android:background="#FFECB3"
android:layout_gravity="center_horizontal|bottom"
android:layout_alignTop="@+id/comment_button"
android:layout_toRightOf="@+id/comment_button"
android:layout_toEndOf="@+id/comment_button" />
</RelativeLayout>
</LinearLayout>
</android.support.v7.widget.CardView>
最佳答案
我已经修改了你的代码粘贴它并检查它是否工作
@Override
public View getView(int position, View convertView, ViewGroup parent) {
DaoMaster.DevOpenHelper helper = new DaoMaster.DevOpenHelper(context,"nxtstepz",null);
HashMap<Integer, String> map = new HashMap<Integer, String>();
SQLiteDatabase db =helper.getWritableDatabase();
DaoMaster daoMaster = new DaoMaster(db);
DaoSession session = daoMaster.newSession();
final PostDao postDao = session.getPostDao();
final PostHolder holder;
View v= convertView;
if(v==null){
LayoutInflater li = LayoutInflater.from(context);
v= li.inflate(layoutid,parent,false);
holder = new PostHolder();
holder.postusername = (TextView)v.findViewById(R.id.postusername);
holder.autherinstitute= (TextView)v.findViewById(R.id.autherinstitute);
holder.postheading = (TextView)v.findViewById(R.id.post_title);
holder.postdescription = (TextView)v.findViewById(R.id.post_description);
holder.likecount = (TextView)v.findViewById(R.id.like_count);
holder.comments = (TextView)v.findViewById(R.id.comment_count);
holder.date = (TextView)v.findViewById(R.id.post_datetime);
holder.category = (TextView)v.findViewById(R.id.post_category);
holder.save=v.findViewById(R.id.save_button);
holder.like= v.findViewById(R.id.like_button);
holder.postdetail=(LinearLayout)v.findViewById(R.id.ll3);
v.setTag(holder);
}
else {
holder= (PostHolder)v.getTag();
}
final PostInfo post;
post = data.get(position);
Log.d("post id", String.valueOf(post.posttypeid));
holder.postusername.setText(post.postusername);
holder.autherinstitute.setText(post.autherinstitutename);
holder.postheading.setText(post.postheading);
holder.postdescription.setText(post.postdescription);
holder.likecount.setText(""+post.likecount);
holder.comments.setText("" + post.comments);
holder.category.setText(post.categoryname);
holder.date.setText(post.date);
map.put(position,"like");
holder.like.setOnClickListener(new View.OnClickListener() { //this method has the problem
@Override
public void onClick(View v) {
if (post.postlikeflag == 0 && map.get(position).equals("like")) {
holder.like.setBackgroundResource(R.drawable.liked);
map.put(position,"liked");
post.postlikeflag =1;
} else {
holder.like.setBackgroundResource(R.drawable.like);
post.postlikeflag = 0;
}
}
});
holder.postdetail.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Intent eventDetail = new Intent(context, PostDetailActivity.class);
eventDetail.putExtra("EventDetail", post);
context.startActivity(eventDetail);
}
});
关于android - ListView Adapter 为单个点击事件同时在多行上执行 onclick 方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30889582/
我正在尝试将 WPF CodeBehid 事件(如 Event、Handler、EventSetter)转换为 MVVM 模式。我不允许使用 System.Windows.Controls,因为我使用
我可能误解了 Backbone 中的事件系统,但是当我尝试以下代码时什么也没有发生。当我向 Backbone.Events 扩展对象添加新属性时,它不应该触发某种更改、更新或重置事件吗?就像模型一样吗
我遇到了一个简单的问题,就是无法弄清楚为什么它不起作用。我有一个子组件“app-buttons”,其中我有一个输入字段,我想听,所以我可以根据输入值过滤列表。 如果我将输入放在我有列表的根组件中,一切
System.Timers.Timer 的 Elapsed 事件实际上与 System.Windows.Forms.Timer 的 Tick 事件相同吗? 在特定情况下使用其中一种比使用另一种有优势吗
嗨,这个 javascript 代码段是什么意思。(evt) 部分是如此令人困惑.. evt 不是 bool 值。这个怎么运作? function checkIt(evt) { evt
我正在使用jquery full calendar我试图在事件被删除时保存它。 $('calendar').fullCalendar ({
我有两个链接的鼠标事件: $('body > form').on("mousedown", function(e){ //Do stuff }).on("mouseup", function(
这是我的代码: $( '#Example' ).on( "keypress", function( keyEvent ) { if ( keyEvent.which != 44 ) {
我尝试了 dragOver 事件处理程序,但它没有正常工作。 我正在研究钢琴,我希望能够弹奏音符,即使那个键上没有发生鼠标按下。 是否有事件处理程序? 下面是我正在制作的钢琴的图片。 最佳答案 您应该
当悬停在相邻文本上时,我需要使隐藏按钮可见。这是通过 onMouseEnter 和 onMouseLeave 事件完成的。但是当点击另外的文本时,我需要使按钮完全可见并停止 onMouseLeave
我有ul标签内 div标签。我申请了mouseup事件 div标记和 click事件 ul标签。 问题 每当我点击 ul标签,然后都是 mouseup和 click事件被触发。 我想要的是当我点击 u
我是 Javascript 和 jQuery 的新手,所以我有一个非常愚蠢的疑问,请耐心等待 $(document).click(function () { alert("!"); v
我有一个邮政编码解析器,我正在使用 keyup 事件处理程序来跟踪输入长度何时达到 5,然后查询服务器以解析邮政编码。但是我想防止脚本被不必要地调用,所以我想知道是否有一种方法可以跟踪 keydown
使用事件 API,我有以下代码来发布带有事件照片的事件 $facebook = new Facebook(array( "appId" => "XXX", "se
首次加载 Microsoft Word 时,既不会触发 NewDocument 事件也不会触发 DocumentOpen 事件。当 Word 实例已打开并打开新文档或现有文档时,这些事件会正常触发。
我发现了很多相关问题(这里和其他地方),但还没有具体找到这个问题。 我正在尝试监听箭头键 (37-40) 的按键事件,但是当以特定顺序使用箭头键时,后续箭头不会生成“按键”事件。 例子: http:/
给定的 HTML: 和 JavaScript 的: var $test = $('#test'); $test.on('keydown', function(event) { if (eve
我是 Node.js 的新手,希望使用流运行程序。对于其他程序,我必须同时启动一个服务器(mongodb、redis 等),但我不知道我是否应该用这个运行一个服务器。请让我知道我哪里出了问题以及如何纠
我正在尝试使用 Swift 和 Cocoa 创建一个适用于 OS X 的应用程序。我希望应用程序能够响应关键事件,而不将焦点放在文本字段上/文本字段中。我在 Xcode 中创建了一个带有 Storyb
我有以下代码: (function(w,d,s,l,i){ w[l]=w[l]||[];w[l].push({
我是一名优秀的程序员,十分优秀!