1

我在里面使用视图标签PercentRelativeLayout。我需要将背景颜色设置为我无法以编程方式执行的相应标签。

<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));
            }
4

1 回答 1

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;
        }

    }

结果似乎完全没问题: 在此处输入图像描述

问题可能出在其他地方。也许视图的宽度和高度为零,或者其他一些视图与它们重叠。

于 2016-03-16T10:08:10.283 回答