- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我试图在我的 gridview 行中显示评级栏,但评级栏顶部始终有一个黑色覆盖层。如果我的 GridView 只有 1 行,那么评级栏显示得非常好。但是当我的 gridview 中有多行时,评分栏顶部总是有一个黑色覆盖层。那么我该如何解决这个问题呢?而且它似乎只发生在 Lollipop 设备上。我的代码如下:
我的 GridView :
<UI.ExpandableHeightGridView
android:id="@+id/gridview_agent_reviews"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="5dp"
android:horizontalSpacing="2dp"
android:isScrollContainer="false"
android:numColumns="1"
android:stretchMode="columnWidth" />
我的 gridview 行:
<?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">
<View
android:layout_width="match_parent"
android:layout_height="0.5dp"
android:layout_marginBottom="5dp"
android:background="#cccccc" />
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="5dp"
android:layout_marginTop="5dp">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_toLeftOf="@+id/img_review_flag"
android:layout_toStartOf="@+id/img_review_flag"
android:orientation="horizontal">
<TextView
android:id="@+id/lbl_review_date"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginEnd="5dp"
android:layout_marginRight="5dp"
android:text="2016-04-05"
android:typeface="sans" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginEnd="5dp"
android:layout_marginRight="5dp"
android:text="|"
android:typeface="sans" />
<TextView
android:id="@+id/lbl_review_name"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginEnd="5dp"
android:layout_marginRight="5dp"
android:text="Recommendation by John Doe"
android:typeface="sans" />
</LinearLayout>
<ImageView
android:id="@+id/img_review_flag"
android:layout_width="22dp"
android:layout_height="22dp"
android:layout_alignParentEnd="true"
android:layout_alignParentRight="true"
android:layout_marginRight="5dp"
android:src="@drawable/ic_flag_blue" />
</RelativeLayout>
<View
android:layout_width="match_parent"
android:layout_height="0.5dp"
android:layout_marginBottom="5dp"
android:layout_marginTop="5dp"
android:background="#cccccc" />
<RatingBar
android:id="@+id/rate_review"
style="@style/CustomRatingBar"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:isIndicator="true" />
<View
android:layout_width="match_parent"
android:layout_height="0.5dp"
android:layout_marginBottom="5dp"
android:layout_marginTop="5dp"
android:background="#cccccc" />
<TextView
android:id="@+id/lbl_review_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Congrats! Keep up the great work."
android:textColor="#000"
android:typeface="sans" />
</LinearLayout>
还有我的 Adapter 中的 getView:
@Override
public View getView(int i, View view, ViewGroup viewGroup) {
View v = view;
ViewHolder holder;
try {
if (v == null) {
LayoutInflater inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
v = inflater.inflate(R.layout.row_list_agent_review, null);
holder = new ViewHolder();
holder.lblReviewDate = (TextView) v.findViewById(R.id.lbl_review_date);
holder.lblReviewer = (TextView) v.findViewById(R.id.lbl_review_name);
holder.lblReviewDesc = (TextView) v.findViewById(R.id.lbl_review_text);
holder.ReviewRate = (RatingBar) v.findViewById(R.id.rate_review);
v.setTag(holder);
} else {
holder = (ViewHolder) v.getTag();
}
String []Date=list.get(i).CreateDate.split("T");
holder.lblReviewDate.setText(Date[0]);
holder.lblReviewer.setText("Recommendation by "+list.get(i).FirstName+" "+list.get(i).LastName);
holder.lblReviewDesc.setText(list.get(i).RecommendationInfo);
holder.ReviewRate.setRating(Float.valueOf(list.get(i).RatingScale));
}catch (Exception e){
}
return v;
}
以及问题截图:
具有多行的 GridView
1 行的 GridView
编辑
我的风格 xml:
<style name="CustomRatingBar" parent="@android:style/Widget.RatingBar">
<item name="android:progressDrawable">@drawable/ratingbarcustom</item>
<item name="android:minHeight">32dip</item>
<item name="android:maxHeight">32dip</item>
</style>
ratingbarcustom.xml
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item android:id="@android:id/background"
android:drawable="@drawable/rating_bar_empty" />
<item android:id="@android:id/secondaryProgress"
android:drawable="@drawable/rating_bar_empty" />
<item android:id="@android:id/progress"
android:drawable="@drawable/rating_bar_filled" />
</layer-list>
ratingbarempty.xml:
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@drawable/star_outline" android:state_pressed="true" android:state_window_focused="true"/>
<item android:drawable="@drawable/star_outline" android:state_focused="true" android:state_window_focused="true"/>
<item android:drawable="@drawable/star_outline" android:state_selected="true" android:state_window_focused="true"/>
<item android:drawable="@drawable/star_outline"/>
</selector>
ratingbarfull.xml:
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@drawable/star_full" android:state_pressed="true" android:state_window_focused="true"/>
<item android:drawable="@drawable/star_full" android:state_focused="true" android:state_window_focused="true"/>
<item android:drawable="@drawable/star_full" android:state_selected="true" android:state_window_focused="true"/>
<item android:drawable="@drawable/star_full"/>
</selector>
最佳答案
试试这个,
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item android:id="@android:id/background"
android:drawable="@drawable/star_outline" />
<item android:id="@android:id/secondaryProgress"
android:drawable="@drawable/star_outline" />
<item android:id="@android:id/progress"
android:drawable="@drawable/star_full" />
</layer-list>
关于android - 评分栏在 gridview 中显示黑色叠加层,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36693632/
当我搜索“iphone”时,我有以下记录和分数 - 记录1: 字段名称 - 显示名称:“iPhone” 字段名称 - 名称:“iPhone” 11.654595 = (MATCH) sum of:
Types Description: parent type 1)Parent Type: "product" 2)childType : "ratings" 问题描述:我有一个es查询(q
如果您使用 Freebase 搜索按名称获取任何实体的匹配项,您将获得按 relevance score 排序的结果.例如尝试 Taj Mahal . 我正在尝试使用 Freebase 数据转储获得类
我试图根据多个不同的标准给不同的城市打从 1 到 5 的“分数”,最终将分数相加并决定哪个城市最好。 表“international_tobacco_alcohol”包含居民用于酒精和烟草的收入百分比
我有一年中任何一个季度的索引(“index-2015.1”,“index-2015.2”...) 我在每个索引上有大约 3000 万个文档。 文档有一个文本字段('title') 我的文档排序方式是(
我有一个数组,我想根据为数组中的每个元素分配一个分数来排序。 假设可能的分数范围是 0-100。为了获得该分数,我们将使用 2 个比较数据点,一个权重为 75,一个权重为 25。我们称它们为 valu
关闭。这个问题需要更多focused .它目前不接受答案。 想改进这个问题吗? 更新问题,使其只关注一个问题 editing this post . 关闭 4 年前。 Improve this qu
做一排星星作为评级是微不足道的,但我不确定做随机数的正确 flutter 方法是什么? 换句话说,假设我的评分最多为 5 颗星,我该怎么做,只有一颗或两颗星?我可以有一个 switch 语句,并返回带
我需要创建一个灵活的(最好是动态的)评分引擎,就像信用评分或保费计算系统一样。有创建评分引擎实践经验的人有任何建议、示例或建议模式吗? 我已经知道: Rete Algorithm FICO The o
我的索引中有以下类型的文档,但由于深度嵌套方面,找不到正确排序的方法。 文档示例: { "metadatas": [{ "name": "name", "timeValidity"
我正在寻找 Lucene (Java) 中的相似性模块,它给出基于权重的分数。我知道这很模糊,最好用一个例子来解释。 Document 1 ----------- Firstname: Frances
我对 Lucene 8 比较陌生,想了解如何将旧版 Solr 4 评分迁移到 Lucene。这就是 Solr 4 目前的做法。 /* * From the SolrRelevan
我正在使用 Lucene 来构建标记共现的大型索引(例如 [elephant,animal]、[melon,fruit]、[宝马,汽车],...)。我使用 BooleanQuery 查询索引以获取绝对
Ratingbar 星未正确显示。我不知道我做错了什么。当我使用自定义样式时,只显示一颗星,它的长度等于 5 星。 风格是: @drawable/manual_ratingbar
我编写了一个程序,它读取 imdb 上排名前 250 的电影的名称和评分,并返回评分的平均值。我有以下程序 import java.io.IOException; import org.jsoup.*
我有一个直截了当的问题,我将 ngram 用于部分匹配。实现效果很好,但得分结果并不像我希望的那样有效。我希望我的分数结果看起来像这样: 柯:.1 Kev:.2 凯维:.3 凯文:.4 相反,我得到以
假设我有一个像这样的 MySQL 表: 软件表: id int name text votes int rating int 其中投票是某人为该项目投票的次数,评分是这些投票的平均值。 示例数据: i
我在索引期间使用过滤器 EdgeNGramTokenFilter。 当我寻找一个词时。当 Lucene 找到完整单词或另一个单词的一部分时,它的评分不会产生差异。 例如,如果我正在查找单词 PUB。我
我们正在使用 java 并使用 elasticsearch java api 开发一个应用程序。我们对元数据建立了索引,并希望在索引时或搜索时使用排名/评分。 而且,我不知道是否可以对用户单击结果时选
有人可以解释(或引用引用资料)用更简单的词来比较 SOLR 和 LUCENE 使用的评分机制。 它们有什么区别吗? 我不太擅长 solr/lucene,但我的发现表明它们似乎不同。 P.S:我只是尝试
我是一名优秀的程序员,十分优秀!