信息: 我正在制作一个包含带有“是/否”复选框作为答案的问卷的应用程序。问卷使用RecyclerView进行,每个问题均使用CardView。 CardView包含一个TextView(问题文本)和两个复选框(是和否框)。
<android.support.v7.widget.CardView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/caseInfoItem
android:layout_width="match_parent"
android:layout_height="70dp"
android:layout_marginTop="30dp"
android:elevation="0dp"
app:cardBackgroundColor="@android:color/transparent"
app:cardElevation="0dp"
app:layout_constraintTop_toBottomOf="@id/cameraView">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal">
<TextView
android:id="@+id/questionText"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:background="@drawable/round"
android:ems="27"
android:paddingEnd="10dp"
android:paddingStart="10dp"
android:textSize="20sp"
android:gravity="center_vertical"/>
<TextView
android:id="@+id/Yes"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/no"
android:textSize="20sp"
android:textStyle="bold"
android:layout_toEndOf="@+id/checkYes"
android:layout_centerVertical="true" />
<TextView
android:id="@+id/No"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/no"
android:textSize="20sp"
android:textStyle="bold"
android:layout_toEndOf="@+id/checkNo"
android:layout_centerVertical="true"/>
<CheckBox
android:id="@+id/checkYes"
android:layout_width="70dp"
android:layout_height="70dp"
android:layout_marginStart="50dp"
android:background="?android:attr/listChoiceIndicatorMultiple"
android:button="@null"
android:layout_toEndOf="@id/questionText"/>
<CheckBox
android:id="@+id/checkNo"
android:layout_width="70dp"
android:layout_height="70dp"
android:layout_marginStart="50dp"
android:background="?android:attr/listChoiceIndicatorMultiple"
android:button="@null"
android:layout_toEndOf="@id/Yes"/>
</RelativeLayout>
</android.support.v7.widget.CardView>
目标与问题: 根据问题的答案,我的问题列表应在特定位置(索引)扩展一个或两个CardView。
示例:如果我对一个问题回答“是”(选中“是”框),则与我回答的问题相关的另一个问题应该出现在我的RecyclerView下方。 要明确: 并非列表的末尾,而是在我刚刚回答的特定问题之下。
如何?
有我的 Adapter 和问卷调查活动的示例:
public class CreateCaseInfoAdapter extends RecyclerView.Adapter<CreateCaseInfoAdapter.CaseHolder> {
ArrayList<String> list;
CustomYesCheckListener yeslistener;
CustomNoCheckListener nolistener;
public CreateCaseInfoAdapter(ArrayList<String> list, CustomYesCheckListener yeslistener, CustomNoCheckListener nolistener) {
this.list = list;
this.yeslistener = yeslistener;
this.nolistener = nolistener;
}
public CreateCaseInfoAdapter(ArrayList<String> list) {
this.list = list;
}
@NonNull
@Override
public CaseHolder onCreateViewHolder(@NonNull ViewGroup parent, int viewType) {
View view = LayoutInflater.from(parent.getContext())
.inflate(R.layout.create_case_info_item, parent, false);
return new CaseHolder(view);
}
@Override
public void onBindViewHolder(@NonNull final CaseHolder holder, final int position) {
String _item = list.get(position);
holder.mSpgText.setText(_item);
holder.mCheckYes.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
@Override
public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
if (isChecked) {
holder.mCheckNo.setChecked(false);
}
yeslistener.onCheckClick(holder.getPosition(), buttonView, isChecked);
}
});
holder.mCheckNo.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
@Override
public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
if (isChecked) {
holder.mCheckYes.setChecked(false);
}
nolistener.onCheckClick(holder.getPosition(), buttonView, isChecked);
}
});
}
@Override
public int getItemCount() {
return list.size();
}
class CaseHolder extends RecyclerView.ViewHolder {
public final CardView mView;
public final TextView mSpgText;
public final TextView mYes;
public final TextView mNo;
public final CheckBox mCheckYes;
public final CheckBox mCheckNo;
public CaseHolder(View view) {
super(view);
mView = view.findViewById(R.id.caseInfoItem);
mSpgText = view.findViewById(R.id.questionText);
mYes = view.findViewById(R.id.Yes);
mNo = view.findViewById(R.id.No);
mCheckNo = view.findViewById(R.id.checkNo);
mCheckYes = view.findViewById(R.id.checkYes);
}
}
}
public void createQuestions() {
switch (mCase.getReportType().toLowerCase()) {
case "BIO": // Ignore this
final ArrayList<String> arrayList = questionsBio(); // method creates a list with 'hardcoded' questions.
adapter = new CreateCaseInfoAdapter(arrayList,new CustomYesCheckListener() {
@Override
public void onCheckClick(int position, CompoundButton buttonView, boolean isChecked) {
if (position == 0) {
String test = "TEST TEST TEST TEST TEST TEST TEST TEST!!!";
if (isChecked) {
arrayList.add(1, test);
adapter.notifyItemInserted(1);
}
}
}
}, new CustomNoCheckListener() {
@Override
public void onCheckClick(int position, CompoundButton buttonView, boolean isChecked) {
if (isChecked) {
Toast.makeText(CreateCaseInfoActivity.this, "No", Toast.LENGTH_SHORT).show();
}
}
});
adapter.notifyDataSetChanged();
recyclerView.setMinimumHeight(Math.round(TypedValue.applyDimension
(TypedValue.COMPLEX_UNIT_DIP, calculator(arrayList), getResources().getDisplayMetrics()))); // calculator method here!
recyclerView.setAdapter(adapter);
break;
我知道,由于我将minHeight设置为列表中所有CardViews的长度,因此我可能未按预期的方式使用RecyclerView。
CustomListeners : 我做了两个自定义的侦听器。每个复选框一个。我正在执行此操作,因此可以对每个Checkbox实施一个操作(并且它可以正常工作)。
所以,我尝试使用adapter.notifyItemInserted(index position)和adapter.notifyDataSetChanged()进行操作,从逻辑上讲最后一个方法不起作用,因为它会重新加载整个列表,因此请取消选中我的答案。
有什么建议/想法吗?
这是我在该网站上问过的第一个问题,因此欢迎您提供任何反馈意见。
编辑 答案:出于某种原因,我使其与adapter.notifyItemInserted(索引位置)一起使用。现在它以某种方式起作用。原因可能是,我有一个头脑笨拙的人,而是写了notifyItemSelected ...无论如何,我希望这可以对其他人有所帮助。
答案 0 :(得分:0)
由于某种原因,我使其与adapter.notifyItemInserted(index position)一起使用。现在它以某种方式起作用。原因可能是,我有一个头脑笨拙的人,而是写了notifyItemSelected ...无论如何,我希望这可以对其他人有所帮助。