|
@@ -273,6 +273,10 @@ if(TextUtils.isEmpty(serial_no))
|
|
|
public void onClick(View v) {
|
|
public void onClick(View v) {
|
|
|
super.onClick(v);
|
|
super.onClick(v);
|
|
|
int position = (Integer) v.getTag();
|
|
int position = (Integer) v.getTag();
|
|
|
|
|
+ // 会重复调用两次
|
|
|
|
|
+ if (mSelectedIndex == position) {
|
|
|
|
|
+ return;
|
|
|
|
|
+ }
|
|
|
setSelectedPosition(position);
|
|
setSelectedPosition(position);
|
|
|
}
|
|
}
|
|
|
|
|
|