Android RatingBar显示超过5星

时间:2013-03-19 16:10:19

标签: android

我想在我的Android应用中通过警告对话框显示评级栏。我面临的问题是,根据屏幕的宽度,评级栏在横向模式下显示超过5星(最多10个),而函数setNumStars()无效。有些帖子已经处理过这个问题,但它们处理的是一个评级栏,其中laout是静态定义的,而我是动态创建它的。如何解决这个问题?

public class MainActivity extends Activity {
private Button launchButton;
//Rating dialog
 private AlertDialog.Builder rater;
 private RatingBar ratingBar;
@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    launchButton =(Button)findViewById(R.id.ratingButton);
    launchButton.setOnClickListener(new View.OnClickListener() {

        @Override
        public void onClick(View v) {
            // TODO Auto-generated method stub
            //Here the alert dialog will be launched
            showRatingDialog();
        }
    });

      //Setting up rating dialog
        rater = new AlertDialog.Builder(this);

        rater.setTitle("This is the rating dialog");


}

@Override
public boolean onCreateOptionsMenu(Menu menu) {
    // Inflate the menu; this adds items to the action bar if it is present.
    getMenuInflater().inflate(R.menu.main, menu);
    return true;
}
public void showRatingDialog()
{
  ratingBar = (RatingBar)findViewById(R.id.ratingStars);
      rater.setNegativeButton("Abbrechen", null);
      rater.setView(ratingBar);
      rater.show();

}
}

我已尝试使用静态布局进行评级栏但是当我这样做并尝试通过警告对话框显示评级栏时,不显示任何星标。以下是评级栏的布局文件:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<RatingBar
        android:id="@+id/ratingStars"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:numStars="5"
        android:stepSize="1"
        />

</LinearLayout>

5 个答案:

答案 0 :(得分:19)

将RatingBar的宽度设置为&#34;包装内容&#34;解决了整个问题。 根据文件:

  

设置要显示的星数。为了显示这些   正确地说,建议将此小部件的布局宽度换行   内容。

答案 1 :(得分:17)

设置android:numStars="5"android:layout_width="wrap_content"

答案 2 :(得分:11)

尝试设置RatingBar下方

的最大值
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="@drawable/active_bg" >

    <RatingBar
            android:id="@+id/rating"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            style="?android:attr/ratingBarStyleSmall"
            android:numStars="5"
            android:stepSize="0.1"
            android:isIndicator="true" />

</RelativeLayout>

在布局文件中创建一个xml文件,并将其设置为内容

像这样更改showDialog功能

LayoutInflater inflater = (LayoutInflater) getSystemService(LAYOUT_INFLATER_SERVICE);
View layout = inflater.inflate(R.layout.***your_xml_name***));
editor.setView(layout);
editor.show();

答案 3 :(得分:3)

将评级栏的父级保持为线性布局,并在该线性布局中保留其他内容,这对我有用

This 博客显示了解决方案的清晰图片

答案 4 :(得分:1)

如果RatingBar位于AlertDialog中,则将其固定在LinearLayout的内部,并在LinearLayout上使用setView。然后,您可以将其宽度设置为WRAP_CONTENT。