void enableFeedbackMode() {
this.appReviewContent.animate().alpha(0.0f).setDuration(500).setInterpolator(new AccelerateInterpolator()).withEndAction(new Runnable() {
public void run() {
AppReviewView.this.yesButton.setText(AppReviewView.this.getContext().getResources().getString(R.string.give_feedback_button_text));
AppReviewView.this.noButton.setText(AppReviewView.this.getContext().getResources().getString(R.string.no_give_feedback_button_text));
AppReviewView.this.reviewDescription.setText(AppReviewView.this.getContext().getResources().getString(R.string.give_feedback_description));
AppReviewView.this.appReviewContent.animate().alpha(DefaultRetryPolicy.DEFAULT_BACKOFF_MULT).setInterpolator(new DecelerateInterpolator()).setDuration(500);
}
});
this.isInFeedbackMode = true;
}
AppReviewView.java 文件源码
java
阅读 46
收藏 0
点赞 0
评论 0
项目:NoticeDog
作者:
评论列表
文章目录