- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这里的问题是,每当我向上滚动回收站 View 并返回顶部时,所选单选按钮就会消失。同样,当回收者 View 卡被重复使用时,单选按钮会在新卡中显示为已选中。
下面是我在recyclerview中使用的viewholder和它的xml
radioButton.xml
<?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="wrap_content"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="@dimen/dimen_10dp"
android:background="@drawable/pdp_card_background"
android:orientation="vertical"
android:padding="@dimen/dimen_10dp">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<com.android.sea.corenative.customviews.MenuIconTextView
android:id="@+id/rating_star"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="AAAAA"
android:textColor="@color/star_color"
android:textSize="@dimen/txt_12sp" />
<com.android.sea.corenative.customviews.NewTextFieldNormal
android:id="@+id/review_helpful_count"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:gravity="end"
android:text="@string/review_helpful_count"
android:textColor="@color/ratings_text_color"
android:textSize="@dimen/txt_12sp" />
</LinearLayout>
<com.android.sea.corenative.customviews.NewTextViewSemiBold
android:id="@+id/review_header"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/dimen_10dp"
android:text="Not that bad for the price"
android:textColor="@color/ratings_text_color"
android:textSize="@dimen/txt_14sp" />
<com.android.sea.corenative.customviews.NewTextFieldNormal
android:id="@+id/review_author_name"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/dimen_5dp"
android:lineSpacingMultiplier="1.42"
android:text="By Enovak"
android:textColor="@color/ratings_and_review_author_text"
android:textSize="@dimen/txt_12sp" />
<com.android.sea.corenative.customviews.NewTextFieldNormal
android:id="@+id/review_time"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:lineSpacingMultiplier="1.42"
android:text="Fort Johnson, NY | Tue, May 16, 2017"
android:textColor="@color/ratings_and_review_author_text"
android:textSize="@dimen/txt_12sp" />
<View
android:layout_width="match_parent"
android:layout_height="5dp"
android:layout_marginBottom="@dimen/dimen_10dp"
android:layout_marginTop="@dimen/dimen_10dp"
android:background="@drawable/dotted"
android:layerType="software" />
<LinearLayout
android:id="@+id/verified_purchase_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<com.android.sea.corenative.customviews.MenuIconTextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:text="G"
android:textColor="@color/ratings_text_color"
android:textSize="@dimen/txt_12sp" />
<com.android.sea.corenative.customviews.NewTextViewSemiBold
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingLeft="@dimen/dimen_3dp"
android:text="Verified Purchase"
android:textColor="@color/ratings_text_color"
android:textSize="@dimen/txt_12sp" />
</LinearLayout>
<android.support.v7.widget.RecyclerView
android:id="@+id/review_images_recyclerview"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/dimen_5dp">
</android.support.v7.widget.RecyclerView>
<com.android.sea.corenative.customviews.TextViewOpenSansRegular
android:id="@+id/review_description"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/dimen_5dp"
android:text="description"
android:textColor="@color/ratings_text_color"
android:textSize="@dimen/txt_14sp" />
<!--android:lineSpacingMultiplier="1.3"-->
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:layout_marginTop="@dimen/dimen_10dp">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginRight="@dimen/dimen_10dp"
android:text="@string/review_helpful" />
<RadioGroup
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<android.support.v7.widget.AppCompatRadioButton
android:id="@+id/yes_radio_btn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginRight="@dimen/dimen_10dp"
android:buttonTint="@color/app_specific_text_color"
android:text="@string/yes" />
<android.support.v7.widget.AppCompatRadioButton
android:id="@+id/no_radio_btn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginRight="@dimen/dimen_10dp"
android:buttonTint="@color/app_specific_text_color"
android:text="@string/no" />
</RadioGroup>
</LinearLayout>
<TextView
android:id="@+id/rr_report_issue"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginRight="@dimen/dimen_10dp"
android:text="@string/report_issue"
android:textSize="@dimen/txt_12sp"
android:textColor="@color/star_color"/>
</LinearLayout>
</LinearLayout>
ReviewCardViewHolder.java
public class ReviewCardViewHolder extends RatingsReviewViewHolder {
TextView reviewStar, reviewHelpfulCount, reviewHeader, reviewAuthor;
TextView reviewTimeStamp, reviewDesc;
LinearLayout verifiedPurchaseLayout;
RecyclerView imgRecyclerView;
final AppCompatRadioButton yesRadioBtn, noRadioBtn;
TextView reportIssue;
public ReviewCardViewHolder(View itemView) {
super(itemView);
reviewStar = (TextView) itemView.findViewById(R.id.rating_star);
reviewHelpfulCount = (TextView) itemView.findViewById(R.id.review_helpful_count);
reviewHeader = (TextView) itemView.findViewById(R.id.review_header);
reviewAuthor = (TextView) itemView.findViewById(R.id.review_author_name);
reviewTimeStamp = (TextView) itemView.findViewById(R.id.review_time);
reviewDesc = (TextView) itemView.findViewById(R.id.review_description);
verifiedPurchaseLayout = (LinearLayout) itemView.findViewById(R.id.verified_purchase_layout);
imgRecyclerView = (RecyclerView) itemView.findViewById(R.id.review_images_recyclerview);
imgRecyclerView.setHasFixedSize(true);
yesRadioBtn = itemView.findViewById(R.id.yes_radio_btn);
noRadioBtn = (AppCompatRadioButton) itemView.findViewById(R.id.no_radio_btn);
reportIssue = itemView.findViewById(R.id.rr_report_issue);
LinearLayoutManager horizontalLayoutManagaer = new LinearLayoutManager(mContext) {
@Override
public boolean canScrollHorizontally() {
return false;
}
@Override
public void setOrientation(int orientation) {
super.setOrientation(0);
}
};
imgRecyclerView.setLayoutManager(horizontalLayoutManagaer);
}
public void bind(RatingsAndReviewItem item) {
final Review data = (Review) item.getValue();
AttributeRating attributeValue = data.getAttributeRating().get(0);
reviewStar.setText(ratingsAndReviewPresenter.drawOverAllRatingStar(attributeValue.getAttributeValue()));
ratingsAndReviewPresenter.setCustomTextVal(reviewHelpfulCount, mContext.getString(R.string.review_helpful_count), data.getHelpfulCount());
reviewHeader.setText(data.getReviewSummary());
Author author = data.getAuthor();
reviewAuthor.setText("By " + author.getScreenName());
String authCity = "", authState = "";
if (author.getCity() != null && !author.getCity().isEmpty()) {
authCity = author.getCity() + ", ";
}
if (author.getState() != null && !author.getState().isEmpty()) {
authState = author.getState() + " | ";
}
String timeStamp = authCity + authState + data.getPublishedDate();
reviewTimeStamp.setText(timeStamp);
reviewDesc.setText(data.getReviewContent());
if (author.getBuyer()) {
verifiedPurchaseLayout.setVisibility(View.VISIBLE);
} else {
verifiedPurchaseLayout.setVisibility(View.GONE);
}
if (data.getIsReviewHelpful() != null && data.getIsReviewHelpful().equalsIgnoreCase("yes")) {
yesRadioBtn.setChecked(true);
}else{
yesRadioBtn.setChecked(false);
}
if (data.getIsReviewHelpful() != null && data.getIsReviewHelpful().equalsIgnoreCase("no")) {
noRadioBtn.setChecked(true);
}else{
noRadioBtn.setChecked(false);
}
yesRadioBtn.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
if(((RadioButton)view).isChecked() ) {
data.setIsReviewHelpful("yes");
}
ratingClickInterface.setRatingHelpfulStatus(true,data);
}
});
noRadioBtn.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
if(((RadioButton)view).isChecked() ) {
data.setIsReviewHelpful("no");
}
ratingClickInterface.setRatingHelpfulStatus(false,data);
}
});
}
}
最佳答案
尝试删除 RadioGroup。 RadioGroup 使这两个单选按钮互斥。
关于android - 单选按钮状态未保留在回收站 View 中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48149424/
@ 目录 原理 创建过滤器 使用过滤器 查询 删除 恢复
我在回收站 View 中使用了一个 item.xml,但文本超出了屏幕。我试图依靠这个 answer , You can avoid all of this by giving each textvi
我的应用程序中有一个回收站 View 。每个回收器 View 项都有一个 imageView。我使用 asyncTask 加载位图并将它们添加到磁盘缓存,然后再将它们设置到 onPostExecute
我已经多次问过这个类似的问题,我花了 2 周多的时间才试图找出解决方案。是的,我知道有多个类似的问题,但我问的原因是因为堆栈上流的解决方案都不起作用。我是 Android 开发的初学者,因此我问你请帮
有谁知道允许特定角色的用户查看 Sitecore 回收站中所有项目的解决方案? 目前,只有管理员可以查看所有已删除的项目。用户只能看到他们已删除的项目。 最佳答案 没有开箱即用的方法,SqlArchi
您好,我有以下回收器适配器: package com.example.app.adapters; import android.annotation.TargetApi; import android
我看不到回收 View ,不确定哪里出了问题。如果你能帮助我,那就太好了。 fragment public class CallDurationFragment extends Fragment {
我是 android 开发的新手。我有一个带有 Viewholder 的 recyclerview 用于显示照片。我在我的应用程序中实现了 like 功能,但我面临的唯一问题是当我添加一个 喜欢 在照
我正在编写一个消息传递应用程序,在 RecyclerView 中显示我的消息和其他消息。 白色背景消息是我的消息,彩色消息是其他消息。 当每条消息顺序为“我的消息,其他消息,...”时,回收站 Vie
我创建了一个包含不同类型 subview 的社交帖子回收 View 。每个 child 多个 layout.recyclerview 工作正常,唯一的问题是 recyclerview 滚动不流畅。 我
我有一个像这样的 View 模型 - private val viewState = SchoolsViewState() fun onViewOpened() = Trans
我正在研究 Android 的应用程序接近完成它但我在 recyclerView 中发现了问题,我不知道如何在 recyclerView 的 Item 的 TextView 上实现点击监听器? (当我
我正在做一个 RecyclerView 示例。问题是,当我在列表中添加第一个项目时,它会在回收 View 中正确显示该项目,但我添加的下一个项目不会显示在回收 View 中。 请帮帮我。 适配器代码是
我想问一下我如何从适配器回收器 View 调用 Activity 中的方法。 在函数 buildRecyclerView 中设置适配器: private void buildRecyclerView(
这个问题在这里已经有了答案: Custom Adapter getView() method is not called (6 个答案) 关闭 6 年前。 我正在使用回收站 View ,但它没有显示
我有一个回收站 View ,我在其中显示了自定义行,但该行未填满宽度。我已经添加了 match_parent 宽度,但它仍然只是包装内容。 我的回收站 View -:
我一直在使用回收器 View 在我的 fragment 上显示 15 张图像。图像位于可绘制文件夹中。我尝试了外部 View 来执行此操作,但速度要慢得多并且滞后很多。因此我使用回收者 View 来解
我的问题是我希望回收站 View 响应对整个 View 的点击,而不是对回收站 View 具有的每个项目的单独点击 viewModel.handleClick()}"
以下是我的行项目的布局:
我正在处理 Recycler View ,在这里我将三个回收器 View 水平放置在布局中。问题是第二个和第三个回收器 View 项目显示但无法滚动,即使在内部使用嵌套滚动并特此附加xml。请建议我如
我是一名优秀的程序员,十分优秀!