18

我想通过我的 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>
4

5 回答 5

21

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

于 2014-05-28T11:24:03.407 回答
19

将 RatingBar 的宽度设置为“包装内容”可以解决整个问题。根据文档:

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

于 2013-07-02T18:51:01.633 回答
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();
于 2013-03-19T16:21:15.067 回答
3

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

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

于 2016-09-23T06:20:38.547 回答
2

如果您的 RatingBar 在 AlertDialog 中,请插入 LinearLayout 内部并在 LinearLayout 上使用 setView。然后您可以将其宽度设置为 WRAP_CONTENT。

于 2019-09-20T14:01:04.557 回答