我有一个谷歌地图应用程序,用户可以通过标记我们选择的餐厅评价我在sq lite数据库中存储该评级值,当他们点击查看评级按钮时,我在滚动视图中将名称和评级值显示为字符串。 现在我想将评级值显示为星号,即用户输入的方式。
<?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>
答案 0 :(得分:5)
为此,您可以使用XML
。请参阅documentation。
在您的布局<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
的{{1}}已修复。 (例如: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
。此处,行项目视图是包含RatingBar
和TextView
。ArrayList
传递给Adapter
getView()
或onBindViewHolder()
获取name
的{{1}}和rating
ArrayList
每个position
并显示TextView
1}}和RatingBar
。以下是一些很好的教程:
答案 1 :(得分:0)
试试这个:
Float rating = Float.parseFloat(stringFromDatabase);
mRateBar.setRating(rating);
textView.setText("Rating: " + stringFromDatabase);