我有一个谷歌 map 应用程序,用户可以在其中通过标记选择的餐厅进行评分,我将该评分值存储在sq lite数据库中,当他们单击查看评分按钮时,我会在滚动 View 中以字符串形式显示名称和评分值。
现在,我想将该评级值显示为星号,即用户输入的方式。
android - 如何显示以星数存储在数据库中的评级值-LMLPHP

<?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">

<TextView
    android:text="Rate me"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:textSize="20dp"
    android:id="@+id/rateme"
    android:layout_weight="0.00" />

<TextView
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:inputType="textPersonName"
    android:text="Restaurent Name"
    android:ems="10"
    android:id="@+id/place"
    android:layout_weight="0.00" />
<RatingBar
    android:id="@+id/ratingBar"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:numStars="5"
    android:stepSize="1.0"
    android:rating="2.0"
    android:layout_marginTop="64dp"
    android:layout_below="@+id/place"
    android:layout_alignParentLeft="true"
    android:layout_alignParentStart="true" />
<TextView
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:inputType="textPersonName"

    android:ems="10"
    android:id="@+id/rate"
    android:layout_weight="0.00" />

<Button
    android:text="Submit"
    android:layout_width="395dp"
    android:layout_height="wrap_content"
    android:id="@+id/submit"
    android:onClick="insert"/>

<Button
    android:text="view Rating"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:id="@+id/viewrate"
    android:layout_weight="0.00"
    android:onClick="display"/>
<ScrollView
    android:id="@+id/scrollView1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true"
    android:layout_alignParentLeft="true"
    android:layout_alignParentRight="true"
    android:layout_below="@+id/button2" >
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical" >




        <TextView
            android:id="@+id/tv"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center"
            android:gravity="center"
            android:textStyle="bold" />
        <RatingBar
            android:id="@+id/rat"
            style="?android:attr/ratingBarStyleSmall"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:numStars="5"
            android:isIndicator="false"
            android:layout_weight="0.07" />
        />




    </LinearLayout>
</ScrollView>

 </LinearLayout>

最佳答案

为此,您可以使用RatingBar。参见documentation

在您的布局中XML:

<RatingBar
    android:id="@+id/ratingBar"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:numStars="5"
    android:stepSize="1.0"
    android:rating="2.0" />

在您的Activity中:
RatingBar ratingBar = (RatingBar) findViewById(R.id.ratingBar);


Float rating = 3.0; // 3.0 is from your database

// To show rating on RatingBar
ratingBar.setRating(rating);

更新:

要从rating获取RatingBar:
Float rating = ratingBar.getRating();

// Show rating on TextView
textView.setText("Rating: " + String.valueOf(rating));

要获得与附件图像一样的输出:

如果numberRestaurant是固定的。 (例如:10):
  • 您应该在布局RatingBar中添加10 TextView和10 XML
  • 为RatingBar id和TextView (rb1, rb2, rb3.....)使用不同的(tv1, tv2, tv3.....)
  • rating获取database值:
       Float rating1 = 1.0;
       Float rating2 = 1.0;
       Float rating3 = 3.0;
       .............
       .......................
    
  • rating值设置为RatingBarTextView
       rb1.setRating(rating1);
       rb2.setRating(rating2);
       rb3.setRating(rating3);
       ................
       ......................
    
       tv1.setText("Restaurant One" + String.valueOf(rating1));
       tv2.setText("Restaurant Two" + String.valueOf(rating2));
       tv3.setText("Restaurant Three" + String.valueOf(rating3));
       ................
       .......................
    

  • 如果number变量的Restaurant:
  • 您应该使用ListViewRecyclerView
  • 使用ArrayList存储从name获得的每个餐厅数据(ratingGoogle Map)。
  • 创建一个自定义Adapter,以在data/view的行项目ListView上填充每个餐厅RecyclerView。这里的行项目 View 是一个包含RatingBarTextView的XML。
  • 将餐厅的ArrayList传递给Adapter
  • 最后,从Adapter的getView()onBindViewHolder()中获取每个name的餐厅ratingArrayList,并在positionTextView上显示。

  • 这里有一些很好的教程:
  • Implementation of RatingBar
  • Android ListView with Custom Adapter
  • Android RecyclerView with Custom Adapter

  • 希望这会有所帮助〜

    关于android - 如何显示以星数存储在数据库中的评级值,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/43510836/

    10-09 04:18