android 多个按钮响应,处理Android Recyclerview中的多个按钮单击并将响应存储在Array或ArrayList中...

我正在设计在线测验App。我设计了PlayQuiz.java文件如下:

public class PlayQuiz extends AppCompatActivity {

private RecyclerView recyclerView;

DataBaseHelper database;

private List quizList;

private QuizAdapter adapter;

@Override

protected void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

setContentView(R.layout.activity_play_quiz);

Toolbar toolbar = findViewById(R.id.toolbar);

setSupportActionBar(toolbar);

recyclerView=(RecyclerView)findViewById(R.id.recycler_view_quiz_display);

database= new DataBaseHelper(PlayQuiz.this);

quizList= database.fillObjQuesList();

adapter=new QuizAdapter(quizList,getApplicationContext());

RecyclerView.LayoutManager mLayoutManager = new LinearLayoutManager(getApplicationContext());

recyclerView.setLayoutManager(mLayoutManager);

recyclerView.setItemAnimator(new DefaultItemAnimator());

recyclerView.setAdapter(adapter);

});

}

}

现在,这是我的QuizAdapter.java文件

public class QuizAdapter extends RecyclerView.Adapter{

private List questionList;

private Context context;

public QuizAdapter(List questionList, Context context) {

this.questionList = questionList;

this.context = context;

}

@NonNull

@Override

public CustomViewHolder onCreateViewHolder(@NonNull ViewGroup parent, int viewType) {

View itemView= LayoutInflater.from(parent.getContext()).inflate(R.layout.quiz_display_format,parent,false);

return new CustomViewHolder(itemView);

}

@Override

public void onBindViewHolder(@NonNull final CustomViewHolder holder, final int position) {

DmQuiz questionsList=questionList.get(position);

holder.tvquestion.getLayoutParams().width= LinearLayout.LayoutParams.WRAP_CONTENT;

holder.tvquestion.setText(questionsList.getQuestion());

holder.optA.setText(questionsList.getOpta());

holder.optB.setText(questionsList.getOptb());

holder.optC.setText(questionsList.getOptc());

holder.optD.setText(questionsList.getOptd());

holder.optA.setOnClickListener(new View.OnClickListener() {

@Override

public void onClick(View view) {

holder.optA.setBackgroundColor(context.getResources().getColor(R.color.colorButton));

holder.optA.setBackgroundResource(R.drawable.button_border); holder.optB.setBackgroundResource(R.drawable.button_border_unselected); holder.optC.setBackgroundResource(R.drawable.button_border_unselected); holder.optD.setBackgroundResource(R.drawable.button_border_unselected);

}

});

holder.optB.setOnClickListener(new View.OnClickListener() {

@Override

public void onClick(View view) {

holder.optA.setBackgroundResource(R.drawable.button_border_unselected);

holder.optB.setBackgroundResource(R.drawable.button_border);

holder.optC.setBackgroundResource(R.drawable.button_border_unselected);

holder.optD.setBackgroundResource(R.drawable.button_border_unselected);

}

});

holder.optC.setOnClickListener(new View.OnClickListener() {

@Override

public void onClick(View view) {

holder.optA.setBackgroundResource(R.drawable.button_border_unselected);

holder.optB.setBackgroundResource(R.drawable.button_border_unselected);

holder.optC.setBackgroundResource(R.drawable.button_border);

holder.optD.setBackgroundResource(R.drawable.button_border_unselected);

}

});

holder.optD.setOnClickListener(new View.OnClickListener() {

@Override

public void onClick(View view) {

holder.optA.setBackgroundResource(R.drawable.button_border_unselected);

holder.optB.setBackgroundResource(R.drawable.button_border_unselected);

holder.optC.setBackgroundResource(R.drawable.button_border_unselected);

holder.optD.setBackgroundResource(R.drawable.button_border);

}

});

holder.tvClear.setOnClickListener(new View.OnClickListener() {

@Override

public void onClick(View view) {

holder.optA.setBackgroundResource(R.drawable.button_border_unselected);

holder.optB.setBackgroundResource(R.drawable.button_border_unselected);

holder.optC.setBackgroundResource(R.drawable.button_border_unselected);

holder.optD.setBackgroundResource(R.drawable.button_border_unselected);

}

});

}

@Override

public int getItemCount() {

return questionList.size();

}

public class CustomViewHolder extends RecyclerView.ViewHolder{

TextView tvquestion, tvClear;

Button optA,optB,optC,optD;

public CustomViewHolder(View itemView) {

super(itemView);

tvquestion=(TextView)itemView.findViewById(R.id.tvQuestion);

optA=(Button)itemView.findViewById(R.id.button1);

optB=(Button)itemView.findViewById(R.id.button2);

optC=(Button)itemView.findViewById(R.id.button3);

optD=(Button)itemView.findViewById(R.id.button4);

tvClear=(TextView)itemView.findViewById(R.id.tvClear);

}

}

public QuizAdapter(List questionList)

{

this.questionList=questionList;

}

public void setSearchOperation(List newList){

questionList= new ArrayList<>();

questionList.addAll(newList);

notifyDataSetChanged();

}

}

Recyclerview中的数据正在从SQLite数据库中显示。

现在我想处理/存储多个按钮上的点击并将其发送到远程MySql服务器。我很困惑,如何存储不同问题的回复?我应该使用ArrayList或其他东西,请帮助......

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/432771.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

密码学中的“盐值 Salt”

盐&#xff08;Salt&#xff09; 在密码学中&#xff0c;是指通过在密码任意固定位置插入特定的字符串&#xff0c;让散列后的结果和使用原始密码的散列结果不相符&#xff0c;这种过程称之为“加盐”。 以上这句话是维基百科上对于 Salt 的定义&#xff0c;但是仅凭这句话还是…

android 主线程调用,Android 主线程和线程之间相互发送消息

通过分析Activity源码&#xff0c;我们知道每个Activity都有一个Looper&#xff0c;所以主线程在接收Message是不需要调用Looper.prepare()和Looper.loop()&#xff0c;但是线程是不带Looper的&#xff0c;当线程要接收来自主线程的消息是就需要调用Looper.prepare()和Looper.l…

10 个十分难得的 javascript 开发经验

Javascript 的很多扩展的特性是的它变得更加的犀利&#xff0c; 同时也给予程序员机会创建更漂亮并且更让用户喜欢的网站。 尽管很多的开发人员都乐于颂扬 javascript&#xff0c;但是仍旧有人看到它的阴暗面。 使用很多 javascript 代码的 web 页面会加载很慢&#xff0c;过多…

简单的UTF8编码生成

用记事本建一个文件&#xff0c;用editplus打开&#xff0c;并转成UTF8格式 然后写中文字符 然后用ultraEdit打开&#xff0c;切换到16机制模式即可

android unzip file,Unzip File in Android Assets

可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效&#xff0c;请关闭广告屏蔽插件后再试):问题:I put a zip file in the android assets. How do i extract the file in the android internal storage? I know how to get the file, but i dont know how t…

Eclipse安装ADT失败解决办法

Eclipse的版本是3.5.2&#xff0c;配置Android的开发环境时遇到问题…… 按照Android官方文档一步步安装&#xff0c;到了安装Eclipse的ADT插件时&#xff0c;提示“requires org.eclipse.gef 0.0.0 but it could not be found” 缺少GEF&#xff0c;Eclipses Graphic Editing …

DM3730 LCD控制器驱动框架

一般来说&#xff0c;linux的LCD控制器驱动是分两个层次 1) fbmem.c 一个linux内核通用的LCD控制器层&#xff0c;没有任何硬件信息&#xff0c;而且不创建设备文件。 它提供的最重要的接口函数是register_framebuffer 2) 特定芯片的LCD控制器硬件驱动代码&#xff0c;他来调…

html仿qq最小化怎么实现,JS仿QQ好友列表展开、收缩功能(第一篇)

JS仿QQ好友列表展开、收缩功能(第一篇)发布时间&#xff1a;2020-10-17 14:20:03来源&#xff1a;脚本之家阅读&#xff1a;96作者&#xff1a;erdouzhang效果图如下所示&#xff1a;html:我的好友张三李四...企业好友小明小红...黑名单哈哈...css&#xff1a;ul,h3 {padding: …

Visual Studio 选择相同变量高亮

前段时间一直在使用matlab&#xff0c;今天需要使用vs2008&#xff0c;而用惯了matlab&#xff0c;习惯了其中一项选中变量高亮的设置&#xff0c;突然回来使用VS&#xff0c;感到各种不适应&#xff0c;顿时想到了一个词&#xff1a;矫情 呵呵&#xff0c;于是在网上找各种插件…

V210调整根分区大小

1. 修改uboot common/mmc_cmd_fdisk.c #define SYSTEM_PART_SIZE (120*1024*1024) 将120改成256 2. 在dd文件系统的时候&#xff0c;增大count dd if/dev/zero ofrootfs_qt4.ext3 bs1024 count262144 重烧系统的时候&#xff0c;需要先烧入uboot&#xff0c;然后重启再烧入…

html中怎么写jq,用jQuery替换HTML页面中的文本

如何替换jQuery中的任何字符串&#xff1f;假设我有一个字符串"-9o0-9909"&#xff0c;我想用另一个字符串替换它。在问问题之前如何使用jQuery将HTML块替换为HTML块的可能重复&#xff0c;最好检查一下系统在输入问题标题时提出的自动建议您能否详细说明为什么您认为…

asp.net使用post方式action到另一个页面,在另一个页面接受form表单的值!(报错,已解决!)...

asp.net使用post方式action到另一个页面&#xff0c;在另一个页面接受form表单的值&#xff01;&#xff08;报错&#xff0c;已解决&#xff01;&#xff09; 原文:asp.net使用post方式action到另一个页面&#xff0c;在另一个页面接受form表单的值&#xff01;&#xff08;报…

Qt中translate、tr关系 与中文问题

Qt中translate、tr关系 与中文问题2010-09-22 00:15题外话&#xff1a;何时使用 tr &#xff1f; 在论坛中漂&#xff0c;经常遇到有人遇到tr相关的问题。用tr的有两类人&#xff1a; (1)因为发现中文老出问题&#xff0c;然后搜索&#xff0c;发现很多人用tr&#xff0c;于是他…

html打印边距影响内容大小,关于web打印的问题,如何控制纸张大小和页边距

关于这个问题我上网查了很多资料&#xff0c;最后参照一个资料。编写了下面内容&#xff1a;但是根本达不到要求&#xff0c;哪位大侠有真正使用的经验&#xff1f;告诉我到底应该怎样弄&#xff1f;求一个真正使用的方法&#xff0c;谢谢&#xff01;再就是这一行在visual stu…

win32控制台

可回显的调用方法&#xff1a; 这个方法步骤比较复杂&#xff0c;是通过创建一个新进程来模拟cmd命令行&#xff0c;将写命令行和回显通过管道的方式呈现。 例如&#xff1a; view plain 1. void CTestMFCDlg::OnOK() 2. { 3. // TODO: Add extra validation …

html是前段还是后端,javascript属于前端还是后端?

JavaScript是一种属于网络的脚本语言&#xff0c;已经被广泛用于Web应用开发&#xff0c;常用来为网页添加各式各样的动态功能&#xff0c;为用户提供更流畅美观的浏览效果。通常JavaScript脚本是通过嵌入在HTML中来实现自身的功能的。前端开发和后端开发的区别在于&#xff1a…

ubuntu12.04中shell脚本无法使用source的原因及解决方法

现象&#xff1a; shell脚本中source aaa.sh时提示 source: not found 原因&#xff1a; ls -l which sh 提示/bin/sh -> dash 这说明是用dash来进行解析的。 改回方法&#xff1a; 命令行执行&#xff1a;sudo dpkg-reconfigure dash 在界面中选择no 再ls -l which sh 提…

2021年河北省高考成绩录取查询结果,2021年河北高考一本录取结果查询和录取通知书发放时间...

河北高考一本录取结果查询和录取通知书发放时间从河北教育考试院获悉&#xff0c;河北高考成绩查询时间已经确定。同时&#xff0c;考生、家长关心的各批次录取时间也已出炉。其中&#xff0c;本科一批高等学校录取时间安排如下&#xff1a;本科一批第一志愿录取结束时间为7月1…

viewgroup 渲染过程

参考 http://blog.csdn.net/luoshengyang/article/details/8372924 总体步骤 performTraversals-->measure---->layout----->draw 测量布局渲染 1.measure 测量过程 例子&#xff1a;FrameLayout measure 测量开始判读是否需要测量 onMeasure 求实际宽度 measureChi…

C++读取ini文件的类

C读取ini文件的类 取自&#xff1a;http://www.viksoe.dk/code/all_mfc.htm&#xff0c;里面有各种MFC常用的类 // Ini.h: interface for the CIni class. // // Written by Bjarke Viksoe (bjarkeviksoe.dk) // Copyright (c) 2000. // // This code may be used in compiled …