forked from jrvansuita/MaterialAbout
-
Notifications
You must be signed in to change notification settings - Fork 0
/
AboutView.java
236 lines (179 loc) · 7.37 KB
/
AboutView.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
package com.vansuita.materialabout.views;
import android.content.Context;
import android.graphics.Bitmap;
import android.graphics.Color;
import android.graphics.drawable.Drawable;
import android.graphics.drawable.GradientDrawable;
import android.graphics.drawable.LayerDrawable;
import android.os.Handler;
import android.support.v7.widget.CardView;
import android.util.AttributeSet;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.view.animation.AnimationUtils;
import android.widget.FrameLayout;
import android.widget.ImageView;
import android.widget.TextView;
import com.vansuita.library.Icon;
import com.vansuita.materialabout.R;
import com.vansuita.materialabout.builder.AboutBuilder;
import com.vansuita.materialabout.builder.Item;
import com.vansuita.materialabout.util.RippleUtil;
/**
* Created by jrvansuita on 10/02/17.
*/
public class AboutView extends FrameLayout {
private LayoutInflater layoutInflater;
private CardView cvHolder;
private CircleImageView ivPhoto;
private ImageView ivCover;
private TextView tvName;
private TextView tvSubTitle;
private TextView tvBrief;
private TextView tvAppName;
private TextView tvAppTitle;
private ImageView ivAppIcon;
private View appHolder;
private AutoFitGridLayout vLinks;
private AutoFitGridLayout vActions;
private Boolean isDarker;
private int iconColor = 0;
private int animationDelay = 200;
public AboutView(Context context) {
this(context, null);
}
public AboutView(Context context, AttributeSet attrs) {
this(context, attrs, 0);
}
public AboutView(Context context, AttributeSet attrs, int defStyleAttr) {
super(context, attrs, defStyleAttr);
init();
bind();
}
private void init() {
setLayoutParams(new ViewGroup.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.WRAP_CONTENT));
layoutInflater = LayoutInflater.from(getContext());
layoutInflater.inflate(R.layout.about, this);
}
private void bind() {
cvHolder = (CardView) findViewById(R.id.card_holder);
ivPhoto = (CircleImageView) findViewById(R.id.photo);
ivCover = (ImageView) findViewById(R.id.cover);
tvName = (TextView) findViewById(R.id.name);
tvSubTitle = (TextView) findViewById(R.id.sub_title);
tvBrief = (TextView) findViewById(R.id.brief);
tvAppName = (TextView) findViewById(R.id.app_name);
tvAppTitle = (TextView) findViewById(R.id.app_title);
ivAppIcon = (ImageView) findViewById(R.id.app_icon);
vLinks = (AutoFitGridLayout) findViewById(R.id.links);
vActions = (AutoFitGridLayout) findViewById(R.id.actions);
appHolder = findViewById(R.id.app_holder);
}
public void build(AboutBuilder bundle) {
tvName.setText(bundle.getName());
tvName.setVisibility(bundle.getName() == null || bundle.getName().isEmpty() ? GONE : VISIBLE);
tvSubTitle.setText(bundle.getSubTitle());
tvSubTitle.setVisibility(bundle.getSubTitle() == null || bundle.getSubTitle().isEmpty() ? GONE : VISIBLE);
tvBrief.setText(bundle.getBrief());
tvBrief.setVisibility(bundle.getBrief() == null || bundle.getBrief().isEmpty() ? GONE : VISIBLE);
tvAppName.setText(bundle.getAppName());
tvAppTitle.setText(bundle.getAppTitle());
setBitmap(ivCover, bundle.getCover());
setBitmap(ivPhoto, bundle.getPhoto());
setBitmap(ivAppIcon, bundle.getAppIcon());
setTextColor(tvName, bundle.getNameColor());
setTextColor(tvSubTitle, bundle.getSubTitleColor());
setTextColor(tvBrief, bundle.getBriefColor());
this.iconColor = bundle.getIconColor();
if (bundle.getBackgroundColor() != 0)
cvHolder.setCardBackgroundColor(bundle.getBackgroundColor());
appHolder.setVisibility(bundle.getAppName() == null || bundle.getAppName().isEmpty() ? GONE : VISIBLE);
if (appHolder.getVisibility() == VISIBLE)
setDivider(bundle, appHolder);
setDivider(bundle, vLinks);
if (bundle.getLinksColumnsCount() != 0)
vLinks.setColumnCount(bundle.getLinksColumnsCount());
if (bundle.getActionsColumnsCount() != 0)
vActions.setColumnCount(bundle.getActionsColumnsCount());
vLinks.setVisibility(bundle.getLinks().isEmpty() ? GONE : VISIBLE);
vActions.setVisibility(bundle.getActions().isEmpty() ? GONE : VISIBLE);
loadLinks(bundle);
loadActions(bundle);
}
private void setTextColor(TextView tv, int color) {
if (color != 0)
tv.setTextColor(color);
}
@SuppressWarnings("ResourceAsColor")
private void setDivider(AboutBuilder bundle, View holder) {
if (bundle.isShowDivider()) {
int color = bundle.getDividerColor();
if (color == 0)
color = isDarker() ? Color.GRAY : getNameColor();
GradientDrawable drawable = ((GradientDrawable) ((LayerDrawable) holder.getBackground()).findDrawableByLayerId(R.id.stroke));
if (drawable != null) {
drawable.setStroke(bundle.getDividerHeight(), color, bundle.getDividerDashWidth(), bundle.getDividerDashGap());
}
} else {
RippleUtil.background(holder, (Drawable) null);
}
}
private int getNameColor() {
return tvName.getCurrentTextColor();
}
private boolean isDarker() {
if (isDarker == null)
isDarker = RippleUtil.isDark(getCardColor());
return isDarker;
}
private int getCardColor() {
return cvHolder.getCardBackgroundColor().getDefaultColor();
}
private int getIconColor() {
if (iconColor == 0)
iconColor = isDarker() ? Color.WHITE : getNameColor();
return iconColor;
}
private void setBitmap(ImageView iv, Bitmap bitmap) {
if (bitmap == null) {
iv.setVisibility(GONE);
} else {
iv.setImageBitmap(bitmap);
}
}
private void loadLinks(AboutBuilder bundle) {
for (Item item : bundle.getLinks()) {
View v = addItem(vLinks, R.layout.link, item);
if (bundle.isLinksAnimated())
animate(v);
}
}
private void animate(final View v) {
v.setVisibility(INVISIBLE);
animationDelay += 20;
new Handler().postDelayed(new Runnable() {
@Override
public void run() {
v.setVisibility(VISIBLE);
v.startAnimation(AnimationUtils.loadAnimation(getContext(), R.anim.expand_in));
}
}, animationDelay);
}
private void loadActions(AboutBuilder bundle) {
for (Item item : bundle.getActions()) {
addItem(vActions, R.layout.action, item);
}
}
private View addItem(ViewGroup holder, int layout, Item item) {
View view = layoutInflater.inflate(layout, null);
TextView tvLabel = (TextView) view.findViewById(R.id.label);
ImageView ivIcon = (ImageView) view.findViewById(R.id.icon);
Icon.on(ivIcon).bitmap(item.getIcon()).color(getIconColor()).put();
tvLabel.setText(item.getLabel());
view.setOnClickListener(item.getOnClick());
RippleUtil.backgroundRipple(view, getCardColor());
holder.addView(view);
return view;
}
}