我需要我的评分栏来跟上用户的平均评分。我有一个主菜单,其中包含几个项目,每个项目都有自己的屏幕和描述。我在每个屏幕上添加了一个评分栏,以便用户可以提交他们的产品评分/查看其他人的平均评分/查看评分数量。有点像亚马逊应用程序上的客户评论,但没有条形图。我已经设置了 xml 文件,但需要有关 java.xml 的帮助。任何帮助,将不胜感激。这是其中一个屏幕的示例。
xml:
<?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:id="@+id/tv1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_marginTop="40dp"
android:text="TextView"
android:textSize="50dp" />
<TextView
android:id="@+id/tv2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:text="TextView" />
<RatingBar
android:id="@+id/ratingBar1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_marginTop="40dp"
android:layout_weight="50" />
<Button
android:id="@+id/button1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_marginBottom="150dp"
android:text="Submit" />
</LinearLayout>
爪哇
public class MainActivity extends Activity {
RatingBar ratings;
TextView tv1, tv2;
Button b;
@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
RatingBar rb = (RatingBar) findViewById(R.id.ratingbar);
}
}