0

我有一个异步任务,通过检查数据库来检查用户是否有某个项目。如果他们有一个项目,那么我会增加一个评分栏,如果没有,我会增加一个按钮,这样他们就可以添加该项目。

我在一个扩展 asyncTask 的类中夸大了评分栏:

//inflate star rater
                LayoutInflater mInflater = (LayoutInflater)c.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
                LinearLayout addButton = (LinearLayout)((Activity) c).findViewById(R.id.addBeerLayout);
                addButton.addView(mInflater.inflate(R.layout.addrate_layout, null));

                addListenerOnRatingBar();

问题是当添加将调用另一个异步任务以将评级保存到外部数据库的侦听器时。

我的 addListenerOnRatingBar() 方法看起来像:

public void addListenerOnRatingBar() {

        RatingBar ratingBar = (RatingBar) findViewById(R.id.beerRatingBar);


        //if rating value is changed,
        //display the current rating value in the result (textview) automatically
        ratingBar.setOnRatingBarChangeListener(new OnRatingBarChangeListener() {
            public void onRatingChanged(RatingBar ratingBar, float rating,
                boolean fromUser) {

                //next async task to update online database

            }
        });
      }

findviewbyid 在 Eclipse 中给出了这个错误:

The method findViewById(int) is undefined for the type CheckBeerJSON

我认为是因为它不扩展活动,所以我对如何准确实现这一点感到困惑。

膨胀的ratebar 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" >



    <RatingBar
        android:id="@+id/beerRatingBar"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:numStars="5"
        android:stepSize="1.0"
        android:rating="0" />


</LinearLayout>
4

1 回答 1

1

我不确定,但假设您在addrate_layout布局中采用了 RatingBar。

如果是这种情况,那么您必须从膨胀的布局中找到 RatingBar。

例如:

mInflater = (LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View view = mInflater.inflate(R.layout.addrate_layout, null);
addListenerOnRatingBar(view);

通过传递修改方法View

public void addListenerOnRatingBar(View view) {

        RatingBar ratingBar = (RatingBar) view.findViewById(R.id.beerRatingBar);


        //if rating value is changed,
        //display the current rating value in the result (textview) automatically
        ratingBar.setOnRatingBarChangeListener(new OnRatingBarChangeListener() {
            public void onRatingChanged(RatingBar ratingBar, float rating,
                boolean fromUser) {

                //next async task to update online database

            }
        });
      }
于 2013-06-24T04:12:41.027 回答