当前位置: 首页>>代码示例>>Java>>正文


Java AppCompatRatingBar类代码示例

本文整理汇总了Java中android.support.v7.widget.AppCompatRatingBar的典型用法代码示例。如果您正苦于以下问题:Java AppCompatRatingBar类的具体用法?Java AppCompatRatingBar怎么用?Java AppCompatRatingBar使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。


AppCompatRatingBar类属于android.support.v7.widget包,在下文中一共展示了AppCompatRatingBar类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: assignViews

import android.support.v7.widget.AppCompatRatingBar; //导入依赖的package包/类
@Override protected void assignViews(View itemView) {
  reply = (TextView) itemView.findViewById(R.id.write_reply_btn);
  showHideReplies = (TextView) itemView.findViewById(R.id.show_replies_btn);
  flagHelfull = (TextView) itemView.findViewById(R.id.helpful_btn);
  flagNotHelfull = (TextView) itemView.findViewById(R.id.not_helpful_btn);

  ratingBar = (AppCompatRatingBar) itemView.findViewById(R.id.rating_bar);
  reviewTitle = (TextView) itemView.findViewById(R.id.comment_title);
  reviewDate = (TextView) itemView.findViewById(R.id.added_date);
  reviewText = (TextView) itemView.findViewById(R.id.comment);

  userImage = (ImageView) itemView.findViewById(R.id.user_icon);
  username = (TextView) itemView.findViewById(R.id.user_name);

  helpfullButtonLayout = itemView.findViewById(R.id.helpful_layout);
  notHelpfullButtonLayout = itemView.findViewById(R.id.not_helpful_layout);
}
 
开发者ID:Aptoide,项目名称:aptoide-client-v8,代码行数:18,代码来源:RateAndReviewCommentWidget.java

示例2: BookInfoHolder

import android.support.v7.widget.AppCompatRatingBar; //导入依赖的package包/类
public BookInfoHolder(View itemView) {
    super(itemView);
    ratingBar_hots = (AppCompatRatingBar) itemView.findViewById(R.id.ratingBar_hots);
    tv_hots_num = (TextView) itemView.findViewById(R.id.tv_hots_num);
    tv_words_num = (TextView) itemView.findViewById(R.id.tv_words_num);
    tv_book_info = (TextView) itemView.findViewById(R.id.tv_book_info);
    iv_more_info = (ImageView) itemView.findViewById(R.id.iv_more_info);
    progressBar = (ProgressBar) itemView.findViewById(R.id.progressBar);
    rl_more_info = (RelativeLayout) itemView.findViewById(R.id.rl_more_info);
    ll_publish_info = (LinearLayout) itemView.findViewById(R.id.ll_publish_info);

    tv_author = (TextView) itemView.findViewById(R.id.tv_author);
    tv_followers = (TextView) itemView.findViewById(R.id.tv_followers);
    retention = (TextView) itemView.findViewById(R.id.tv_retention);
    tv_day_words = (TextView) itemView.findViewById(R.id.tv_day_words);
    tv_chapters = (TextView) itemView.findViewById(R.id.tv_chapters);
    tv_publish_date = (TextView) itemView.findViewById(R.id.tv_publish_date);
    tv_last_hapter = (TextView) itemView.findViewById(R.id.tv_last_hapter);
    tv_serial = (TextView) itemView.findViewById(R.id.tv_serial);
    tv_minor_cate = (TextView) itemView.findViewById(R.id.tv_minor_cate);
    tv_creater = (TextView) itemView.findViewById(R.id.tv_creater);

    flow_layout = (FlowLayout) itemView.findViewById(R.id.flow_layout);
}
 
开发者ID:hymanme,项目名称:MaterialHome,代码行数:25,代码来源:EBookDetailAdapter.java

示例3: BookInfoHolder

import android.support.v7.widget.AppCompatRatingBar; //导入依赖的package包/类
public BookInfoHolder(View itemView) {
    super(itemView);
    ratingBar_hots = (AppCompatRatingBar) itemView.findViewById(R.id.ratingBar_hots);
    tv_hots_num = (TextView) itemView.findViewById(R.id.tv_hots_num);
    tv_comment_num = (TextView) itemView.findViewById(R.id.tv_comment_num);
    tv_book_info = (TextView) itemView.findViewById(R.id.tv_book_info);
    iv_more_info = (ImageView) itemView.findViewById(R.id.iv_more_info);
    progressBar = (ProgressBar) itemView.findViewById(R.id.progressBar);
    rl_more_info = (RelativeLayout) itemView.findViewById(R.id.rl_more_info);
    ll_publish_info = (LinearLayout) itemView.findViewById(R.id.ll_publish_info);

    tv_author = (TextView) itemView.findViewById(R.id.tv_author);
    tv_publisher = (TextView) itemView.findViewById(R.id.tv_publisher);
    tv_subtitle = (TextView) itemView.findViewById(R.id.tv_subtitle);
    tv_origin_title = (TextView) itemView.findViewById(R.id.tv_origin_title);
    tv_translator = (TextView) itemView.findViewById(R.id.tv_translator);
    tv_publish_date = (TextView) itemView.findViewById(R.id.tv_publish_date);
    tv_pages = (TextView) itemView.findViewById(R.id.tv_pages);
    tv_price = (TextView) itemView.findViewById(R.id.tv_price);
    tv_binding = (TextView) itemView.findViewById(R.id.tv_binding);
    tv_isbn = (TextView) itemView.findViewById(R.id.tv_isbn);
}
 
开发者ID:hymanme,项目名称:MaterialHome,代码行数:23,代码来源:BookDetailAdapter.java

示例4: onCreateView

import android.support.v7.widget.AppCompatRatingBar; //导入依赖的package包/类
@Override
protected View onCreateView(Activity activity, Object... args) {

    View contentView = activity.getLayoutInflater().inflate(R.layout.view_poi_comment_score, null);

    vRootView = contentView;
    mAcRatingBar = (AppCompatRatingBar) contentView.findViewById(R.id.acRatingBar);
    mTvPoiCommentNum = (TextView) contentView.findViewById(R.id.tvPoiCommentNum);
    tvCommentLevel = (TextView) contentView.findViewById(R.id.tvCommentLevel);

    score5 = (ProgressBar) contentView.findViewById(R.id.score5);
    score4 = (ProgressBar) contentView.findViewById(R.id.score4);
    score3 = (ProgressBar) contentView.findViewById(R.id.score3);
    score2 = (ProgressBar) contentView.findViewById(R.id.score2);
    score1 = (ProgressBar) contentView.findViewById(R.id.score1);

    tv5Count = (TextView) contentView.findViewById(R.id.tv5Count);
    tv4Count = (TextView) contentView.findViewById(R.id.tv4Count);
    tv3Count = (TextView) contentView.findViewById(R.id.tv3Count);
    tv2Count = (TextView) contentView.findViewById(R.id.tv2Count);
    tv1Count = (TextView) contentView.findViewById(R.id.tv1Count);

    return contentView;
}
 
开发者ID:joy-inc,项目名称:joy-app,代码行数:25,代码来源:CommentScoresWidget.java

示例5: initView

import android.support.v7.widget.AppCompatRatingBar; //导入依赖的package包/类
private void initView(){
    mContentView = LayoutInflater.from(mContext).inflate(R.layout.item_book_series_ceil, null, false);
    iv_book_img = (ImageView) mContentView.findViewById(R.id.iv_book_img);
    tv_title = (TextView) mContentView.findViewById(R.id.tv_title);
    ratingBar_hots = (AppCompatRatingBar) mContentView.findViewById(R.id.ratingBar_hots);
    tv_hots_num = (TextView) mContentView.findViewById(R.id.tv_hots_num);
}
 
开发者ID:chengkun123,项目名称:ReadMark,代码行数:8,代码来源:BookSeriesCeilHolder.java

示例6: setRating

import android.support.v7.widget.AppCompatRatingBar; //导入依赖的package包/类
public MyViewHolder setRating(int viewId, float rating){
    AppCompatRatingBar rb = getView(viewId);
    if(rb != null){
        rb.setRating(rating);
    }
    return this;
}
 
开发者ID:chengkun123,项目名称:ReadMark,代码行数:8,代码来源:MyViewHolder.java

示例7: BookListHolder

import android.support.v7.widget.AppCompatRatingBar; //导入依赖的package包/类
public BookListHolder(View itemView) {
    super(itemView);
    iv_book_img = (ImageView) itemView.findViewById(R.id.iv_book_img);
    tv_book_title = (TextView) itemView.findViewById(R.id.tv_book_title);
    ratingBar_hots = (AppCompatRatingBar) itemView.findViewById(R.id.ratingBar_hots);
    tv_hots_num = (TextView) itemView.findViewById(R.id.tv_hots_num);
    tv_book_info = (TextView) itemView.findViewById(R.id.tv_book_info);
    tv_book_description = (TextView) itemView.findViewById(R.id.tv_book_description);
}
 
开发者ID:chengkun123,项目名称:ReadMark,代码行数:10,代码来源:BookListAdapter.java

示例8: BookInfoHolder

import android.support.v7.widget.AppCompatRatingBar; //导入依赖的package包/类
public BookInfoHolder(View itemView) {
    super(itemView);
    ratingBar_hots = (AppCompatRatingBar) itemView.findViewById(R.id.ratingBar_hots);
    tv_hots_num = (TextView) itemView.findViewById(R.id.tv_hots_num);
    tv_comment_num = (TextView) itemView.findViewById(R.id.tv_comment_num);
    tv_book_info = (TextView) itemView.findViewById(R.id.tv_book_info);
    iv_more_info = (ImageView) itemView.findViewById(R.id.iv_more_info);
    rl_more_info = (RelativeLayout) itemView.findViewById(R.id.rl_more_info);

    tv_subtitle = (TextView) itemView.findViewById(R.id.tv_subtitle);
    tv_origin_title = (TextView) itemView.findViewById(R.id.tv_origin_title);
    tv_translator = (TextView) itemView.findViewById(R.id.tv_translator);

}
 
开发者ID:chengkun123,项目名称:ReadMark,代码行数:15,代码来源:BookDetailAdapter.java

示例9: BookCommentHolder

import android.support.v7.widget.AppCompatRatingBar; //导入依赖的package包/类
public BookCommentHolder(View itemView) {
    super(itemView);
    tv_comment_title = (TextView) itemView.findViewById(R.id.tv_comment_title);
    iv_avatar = (ImageView) itemView.findViewById(R.id.iv_avatar);
    tv_user_name = (TextView) itemView.findViewById(R.id.tv_user_name);
    ratingBar_hots = (AppCompatRatingBar) itemView.findViewById(R.id.ratingBar_hots);
    tv_comment_content = (TextView) itemView.findViewById(R.id.tv_comment_content);
    iv_favorite = (ImageView) itemView.findViewById(R.id.iv_favorite);
    tv_favorite_num = (TextView) itemView.findViewById(R.id.tv_favorite_num);
    tv_update_time = (TextView) itemView.findViewById(R.id.tv_update_time);
    tv_more_comment = (TextView) itemView.findViewById(R.id.tv_more_comment);
}
 
开发者ID:chengkun123,项目名称:ReadMark,代码行数:13,代码来源:BookDetailAdapter.java

示例10: getView

import android.support.v7.widget.AppCompatRatingBar; //导入依赖的package包/类
@Override
public View getView(int position, View convertView, ViewGroup parent) {
    // Get the data item for this position
    ProductReview review = getItem(position);
    // Check if an existing view is being reused, otherwise inflate the view
    ViewHolder viewHolder; // view lookup cache stored in tag
    if (convertView == null) {
        viewHolder = new ViewHolder();
        LayoutInflater inflater = LayoutInflater.from(getContext());
        convertView = inflater.inflate(R.layout.item_productreview, parent, false);
        viewHolder.productReviewChangeDate = (TextView) convertView.findViewById(R.id.productReviewChangeDate);
        viewHolder.productReviewComment = (TextView) convertView.findViewById(R.id.productReviewComment);
        viewHolder.productReviewCommentRatingBar = (AppCompatRatingBar) convertView.findViewById(R.id.productReviewCommentRatingBar);

        convertView.setTag(viewHolder);
    } else {
        viewHolder = (ViewHolder) convertView.getTag();
    }
    // Populate the data into the template view using the data object
    java.text.DateFormat dateFormat = android.text.format.DateFormat.getDateFormat(this.context);

    String changeDateFormated = dateFormat.format(review.getCreationDate());
    viewHolder.productReviewChangeDate.setText(changeDateFormated);
    viewHolder.productReviewComment.setText(review.getComment());
    viewHolder.productReviewCommentRatingBar.setRating(review.getMark());
    // Return the completed view to render on screen
    return convertView;
}
 
开发者ID:trustedshops,项目名称:trustedshops-android-sdk,代码行数:29,代码来源:ProductReviewsAdapter.java

示例11: initView

import android.support.v7.widget.AppCompatRatingBar; //导入依赖的package包/类
private void initView() {
    mContentView = LayoutInflater.from(UIUtils.getContext()).inflate(R.layout.item_book_series_ceil, null, false);
    iv_book_img = (ImageView) mContentView.findViewById(R.id.iv_book_img);
    tv_title = (TextView) mContentView.findViewById(R.id.tv_title);
    ratingBar_hots = (AppCompatRatingBar) mContentView.findViewById(R.id.ratingBar_hots);
    tv_hots_num = (TextView) mContentView.findViewById(R.id.tv_hots_num);
}
 
开发者ID:hymanme,项目名称:MaterialHome,代码行数:8,代码来源:EBookSeriesCeilHolder.java

示例12: BookCommentHolder

import android.support.v7.widget.AppCompatRatingBar; //导入依赖的package包/类
public BookCommentHolder(View itemView) {
            super(itemView);
//            tv_comment_title = (TextView) itemView.findViewById(R.id.tv_comment_title);
            iv_avatar = (ImageView) itemView.findViewById(R.id.iv_avatar);
            tv_user_name = (TextView) itemView.findViewById(R.id.tv_user_name);
            ratingBar_hots = (AppCompatRatingBar) itemView.findViewById(R.id.ratingBar_hots);
            tv_comment_content = (TextView) itemView.findViewById(R.id.tv_comment_content);
//            iv_favorite = (ImageView) itemView.findViewById(R.id.iv_favorite);
            tv_favorite_num = (TextView) itemView.findViewById(R.id.tv_favorite_num);
            tv_update_time = (TextView) itemView.findViewById(R.id.tv_update_time);
//            tv_more_comment = (TextView) itemView.findViewById(R.id.tv_more_comment);
        }
 
开发者ID:hymanme,项目名称:MaterialHome,代码行数:13,代码来源:EBookReviewsAdapter.java

示例13: EBookListHolder

import android.support.v7.widget.AppCompatRatingBar; //导入依赖的package包/类
public EBookListHolder(View itemView) {
    super(itemView);
    iv_book_img = (ImageView) itemView.findViewById(R.id.iv_book_img);
    tv_book_title = (TextView) itemView.findViewById(R.id.tv_book_title);
    ratingBar_hots = (AppCompatRatingBar) itemView.findViewById(R.id.ratingBar_hots);
    tv_hots_num = (TextView) itemView.findViewById(R.id.tv_hots_num);
    tv_book_info = (TextView) itemView.findViewById(R.id.tv_book_info);
    tv_book_description = (TextView) itemView.findViewById(R.id.tv_book_description);
}
 
开发者ID:hymanme,项目名称:MaterialHome,代码行数:10,代码来源:EBookListAdapter.java

示例14: initConvertView

import android.support.v7.widget.AppCompatRatingBar; //导入依赖的package包/类
@Override
public void initConvertView(View convertView) {

    acRatingBar = (AppCompatRatingBar) convertView.findViewById(R.id.acRatingBar);
    tvComment = (TextView) convertView.findViewById(R.id.tvComment);
    tvCommentUserDate = (TextView) convertView.findViewById(R.id.tvCommentUserDate);
}
 
开发者ID:joy-inc,项目名称:joy-app,代码行数:8,代码来源:PoiDetailCommentWidget.java

示例15: initContentViews

import android.support.v7.widget.AppCompatRatingBar; //导入依赖的package包/类
private void initContentViews(View contentView) {

        mLlBannerDiv = (LinearLayout) contentView.findViewById(R.id.llBannerDiv);
        mTvTitle = (TextView) contentView.findViewById(R.id.tvTitle);
        mTvBookBefore = (TextView) contentView.findViewById(R.id.tvBookBefore);
        mAcRatingBar = (AppCompatRatingBar) contentView.findViewById(R.id.acRatingBar);
        llAddPlanDiv = (LinearLayout) contentView.findViewById(R.id.llAddPlanDiv);
        llAddPlanDiv.setOnClickListener(this);
        mBtnAddToPlan = (TextView) contentView.findViewById(R.id.tvAddToPlan);
        mTvName = (TextView) contentView.findViewById(R.id.tvName);
        mTvPrice = (TextView) contentView.findViewById(R.id.tvPrice);
        mTvPoiCommentNum = (TextView) contentView.findViewById(R.id.tvPoiCommentNum);

    }
 
开发者ID:joy-inc,项目名称:joy-app,代码行数:15,代码来源:PoiDetailHeaderWidget.java


注:本文中的android.support.v7.widget.AppCompatRatingBar类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。