我在PercentRelativeLayout
中使用了view标记。我需要将背景颜色设置为相应的标签,我无法以编程方式执行此操作。
<android.support.percent.PercentRelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:id="@+id/leaderboardRowRelativeLayout"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/apk/res-auto"
android:layout_height="match_parent">
<View
android:id="@+id/percentile_scored"
android:layout_width="0dp"
android:layout_height="0dp"
app:layout_widthPercent="50%"
app:layout_heightPercent="15%"
/>
<View
android:id="@+id/percentile_left_scoring"
android:layout_width="0dp"
android:layout_height="0dp"
app:layout_widthPercent="50%"
app:layout_heightPercent="15%"
android:layout_toRightOf="@+id/percentile_scored"
/>
我尝试设置背景的地方:
if(String.valueOf(userId).equals(leaderBoardDb.getUserId())){
leaderboardFriendsViewHolder.percent_scored.setBackgroundColor(ContextCompat.getColor(getApplicationContext(),R.color.leaderboard_user_color));
}else {
leaderboardFriendsViewHolder.percent_scored.setBackground(ContextCompat.getDrawable(getApplicationContext(),R.drawable.leaderboard_row_color));
}
答案 0 :(得分:2)
我和你一样尝试过相同的代码。
1)在设计中:
<android.support.percent.PercentRelativeLayout
android:id="@+id/leaderboardRowRelativeLayout"
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="match_parent">
<View
android:id="@+id/percentile_scored"
android:layout_width="0dp"
android:layout_height="0dp"
app:layout_heightPercent="15%"
app:layout_widthPercent="50%"
/>
<View
android:id="@+id/percentile_left_scoring"
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_toRightOf="@+id/percentile_scored"
app:layout_heightPercent="15%"
app:layout_widthPercent="50%"
/>
</android.support.percent.PercentRelativeLayout>
2)在RecyclerAdapter中:
...
@Override
public void onBindViewHolder(ProductImagesRecyclerAdapter.ViewHolder holder, int position) {
Timber.e("Position: " + position);
if(position%2 == 0) {
holder.aa.setBackgroundColor(ContextCompat.getColor(context, R.color.colorAccent));
} else {
holder.aa.setBackgroundColor(ContextCompat.getColor(context, R.color.colorPrimaryDark));
}
}
...
public static class ViewHolder extends RecyclerView.ViewHolder {
ImageView productImage;
int position;
View aa;
public ViewHolder(View v, final ProductImagesRecyclerInterface productImagesRecyclerInterface) {
super(v);
aa = v.findViewById(R.id.percentile_scored);
}
public void setPosition(int position) {
this.position = position;
}
}
问题可能在其他地方。可能视图宽度和高度为零或其他一些视图重叠。