我有一个谷歌 map 应用程序,用户可以在其中通过标记选择的餐厅进行评分,我将该评分值存储在sq lite数据库中,当他们单击查看评分按钮时,我会在滚动 View 中以字符串形式显示名称和评分值。
现在,我想将该评级值显示为星号,即用户输入的方式。
<?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));
要获得与附件图像一样的输出:
#如果
number
的Restaurant
是固定的。 (例如:10
):RatingBar
中添加10 TextView
和10 XML
。 id
和TextView (rb1, rb2, rb3.....)
使用不同的(tv1, tv2, tv3.....)
。 rating
获取database
值: Float rating1 = 1.0;
Float rating2 = 1.0;
Float rating3 = 3.0;
.............
.......................
rating
值设置为RatingBar
和TextView
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
:ListView
或RecyclerView
。 ArrayList
存储从name
获得的每个餐厅数据(rating
和Google Map
)。 Adapter
,以在data
/view
的行项目ListView
上填充每个餐厅RecyclerView
。这里的行项目 View 是一个包含RatingBar
和TextView
的XML。 ArrayList
传递给Adapter
getView()
或onBindViewHolder()
中获取每个name
的餐厅rating
和ArrayList
,并在position
和TextView
上显示。 这里有一些很好的教程:
希望这会有所帮助〜
关于android - 如何显示以星数存储在数据库中的评级值,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/43510836/