Skip to content

Commit

Permalink
- make iconImageView public
Browse files Browse the repository at this point in the history
  • Loading branch information
bliveinhack committed May 13, 2017
1 parent b3ba8c0 commit 70314fa
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@ protected void onCreate(Bundle savedInstanceState) {
progressOne.setProgressBackgroundColor(getResources().getColor(R.color.custom_progress_background));
updateSecondaryProgressOne();




tvProgressOne = (TextView) findViewById(R.id.tv_progress_one);
updateTextProgressOne();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,14 @@ public class IconRoundCornerProgressBar extends BaseRoundCornerProgressBar imple
protected final static int DEFAULT_ICON_PADDING_TOP = 0;
protected final static int DEFAULT_ICON_PADDING_BOTTOM = 0;

public ImageView getIvProgressIcon() {
return ivProgressIcon;
}

public void setIvProgressIcon(ImageView ivProgressIcon) {
this.ivProgressIcon = ivProgressIcon;
}

private ImageView ivProgressIcon;
private int iconResource;
private int iconSize;
Expand Down

0 comments on commit 70314fa

Please sign in to comment.