trouble accessing inflated ratingBar in Android
问题 I have an async task that check if a user has a certain item, by checking a database. If they have an item then I inflate a rating bar, if not I inflate a button so they can add the item. I inflate the rating bar in an class which extends asyncTask with: //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