Android 获取多个评级条的值,并设置可以使用的星数限制

Android 获取多个评级条的值,并设置可以使用的星数限制,android,android-fragments,ratingbar,Android,Android Fragments,Ratingbar,我正在做一个有片段的项目,我有4个评级条(每个都有四颗星),用户只能使用所有评级条中的10个“星” 我现在正在尝试将这些值相加,但即使这样也不起作用。我希望能够将所有值相加,然后限制在所有评级中可以设置多少值 FragmentRatings.java: public class FramentRatings extends Fragment{ RatingBar rbStrength, rbIntellect, rbWisdom, rbDexterity; TextView tv

我正在做一个有片段的项目,我有4个评级条(每个都有四颗星),用户只能使用所有评级条中的10个“星”

我现在正在尝试将这些值相加,但即使这样也不起作用。我希望能够将所有值相加,然后限制在所有评级中可以设置多少值

FragmentRatings.java:

public class FramentRatings extends Fragment{
    RatingBar rbStrength, rbIntellect, rbWisdom, rbDexterity;
    TextView tvPointSpent;
    float pointsS, pointsI, pointsW, pointsD, total;

    private SharedPreferences prefs;

    @Nullable
    @Override
    public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, Bundle savedInstanceState) {
        View view = inflater.inflate(R.layout.fragment_ratings, container, false);

        rbStrength = (RatingBar)view.findViewById(R.id.strengthRating);
        rbIntellect = (RatingBar)view.findViewById(R.id.intellectRating);
        rbWisdom = (RatingBar)view.findViewById(R.id.wisdomRating);
        rbDexterity = (RatingBar)view.findViewById(R.id.dexterityRating);


        tvPointSpent = (TextView)view.findViewById(R.id.tvPointsSpend);

        rbStrength.setOnRatingBarChangeListener(new RatingBar.OnRatingBarChangeListener() {
            @Override
            public void onRatingChanged(RatingBar ratingBar, float rating, boolean fromUser) {
                tvPointSpent.setText(""+rbStrength.getRating());
                pointsS = rbStrength.getRating();
            }
        });

        rbIntellect.setOnRatingBarChangeListener(new RatingBar.OnRatingBarChangeListener() {
            @Override
            public void onRatingChanged(RatingBar ratingBar, float rating, boolean fromUser) {
                //tvPointSpent.setText(""+rbIntellect.getRating());
                pointsI = rbIntellect.getRating();
            }
        });

        rbWisdom.setOnRatingBarChangeListener(new RatingBar.OnRatingBarChangeListener() {
            @Override
            public void onRatingChanged(RatingBar ratingBar, float rating, boolean fromUser) {
                //tvPointSpent.setText(""+rbStrength.getRating());
                pointsW = rbWisdom.getRating();
            }
        });

        rbDexterity.setOnRatingBarChangeListener(new RatingBar.OnRatingBarChangeListener() {
            @Override
            public void onRatingChanged(RatingBar ratingBar, float rating, boolean fromUser) {
                //tvPointSpent.setText(""+rbStrength.getRating());
                pointsD = rbDexterity.getRating();
            }
        });

        total = pointsD + pointsI + pointsS + pointsW;

        tvPointSpent.setText(""+pointsS);

        return view;
    }
}
fragment_ratings.xml:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical" android:layout_width="match_parent"
    android:layout_height="match_parent">
    <TextView
        android:id="@+id/tvStrength"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignTop="@+id/strengthRating"
        android:layout_marginEnd="59dp"
        android:layout_marginRight="59dp"
        android:layout_toLeftOf="@+id/strengthRating"
        android:layout_toStartOf="@+id/strengthRating"
        android:text="Strength:"
        android:textSize="30sp" />

    <TextView
        android:id="@+id/tvIntellect"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignLeft="@+id/tvStrength"
        android:layout_alignStart="@+id/tvStrength"
        android:layout_alignTop="@+id/intellectRating"
        android:text="Intellect:"
        android:textSize="30sp" />

    <TextView
        android:id="@+id/tvWisdom"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignLeft="@+id/tvIntellect"
        android:layout_alignStart="@+id/tvIntellect"
        android:layout_alignTop="@+id/wisdomRating"
        android:text="Wisdom:"
        android:textSize="30sp" />

    <RatingBar
        android:id="@+id/strengthRating"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginEnd="141dp"
        android:layout_marginRight="141dp"
        android:layout_marginTop="61dp"
        android:numStars="4"
        android:rating="0"
        android:stepSize="1.0"
        android:layout_alignParentTop="true"
        android:layout_alignParentRight="true"
        android:layout_alignParentEnd="true" />

    <RatingBar
        android:id="@+id/intellectRating"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignLeft="@+id/strengthRating"
        android:layout_alignStart="@+id/strengthRating"
        android:layout_below="@+id/strengthRating"
        android:layout_marginTop="58dp"
        android:numStars="4"
        android:rating="0"
        android:stepSize="1.0" />

    <RatingBar
        android:id="@+id/wisdomRating"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignLeft="@+id/intellectRating"
        android:layout_alignStart="@+id/intellectRating"
        android:layout_below="@+id/intellectRating"
        android:layout_marginTop="61dp"
        android:numStars="4"
        android:rating="0"
        android:stepSize="1.0" />

    <RatingBar
        android:id="@+id/dexterityRating"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignEnd="@+id/wisdomRating"
        android:layout_alignRight="@+id/wisdomRating"
        android:layout_below="@+id/wisdomRating"
        android:layout_marginTop="66dp"
        android:numStars="4"
        android:rating="0"
        android:stepSize="1.0" />

    <TextView
        android:id="@+id/tvDexterity"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignLeft="@+id/tvIntellect"
        android:layout_alignStart="@+id/tvIntellect"
        android:layout_alignTop="@+id/dexterityRating"
        android:text="Dexterity:"
        android:textSize="30sp" />

    <TextView
        android:id="@+id/tvPoints"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignLeft="@+id/tvDexterity"
        android:layout_alignStart="@+id/tvDexterity"
        android:layout_below="@+id/dexterityRating"
        android:layout_marginTop="62dp"
        android:text="Points left to spend: "
        android:textSize="30sp" />

    <TextView
        android:id="@+id/tvPointsSpend"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignTop="@+id/tvPoints"
        android:layout_marginLeft="30dp"
        android:layout_marginStart="30dp"
        android:layout_toEndOf="@+id/tvPoints"
        android:layout_toRightOf="@+id/tvPoints"
        android:text="10"
        android:textSize="30sp" />


</RelativeLayout>


可能逻辑有误,但行不应该:

tvpointwasted.setText(“+pointsS”)

是:


tvpointwasted.setText(String.valueOf(total))

我可能很晚了,但是

我建议的一个快速修复方法是
pointsS=ratingBar.getRating()

pointsS=额定值和rest类似,因为函数
onRatingChanged(…)
中的这些参数用于获取更改后的值和最终值。

不是Android开发人员,但似乎没有在之前/之后捕获一次更改事件。所以我可能要做的是为你的每个统计数据创建“当前”值。例如,使用正在更改的强度,我将使用currentwistence+currentIntelligent+currentDextrity+rbStrength.getRating(),如果它大于10,我可以:a)rbStrength.setRating(currentStrength)//重置或b)rbStrength.setRating(10-currentwistence-currentIntelligent-currentDextrity)//我可以设置它的最大剩余值。如果是