|
|
@@ -1,6 +1,5 @@
|
|
|
package kr.co.zumo.app.lifeplus.view.screen.event.select;
|
|
|
|
|
|
-import android.graphics.drawable.StateListDrawable;
|
|
|
import android.support.v7.widget.RecyclerView;
|
|
|
import android.view.View;
|
|
|
import android.widget.CheckBox;
|
|
|
@@ -80,11 +79,4 @@ public class EventSelectCombinedViewHolder extends RecyclerView.ViewHolder {
|
|
|
checkBox.setChecked(false);
|
|
|
}
|
|
|
}
|
|
|
-
|
|
|
- private StateListDrawable getStateListDrawable() {
|
|
|
- StateListDrawable stateListDrawable = new StateListDrawable();
|
|
|
- stateListDrawable.addState(new int[]{android.R.attr.state_checked}, itemView.getContext().getResources().getDrawable(R.drawable.icon_radiobutton_on));
|
|
|
- stateListDrawable.addState(new int[]{-android.R.attr.state_checked}, itemView.getContext().getResources().getDrawable(R.drawable.icon_radiobutton_off));
|
|
|
- return stateListDrawable;
|
|
|
- }
|
|
|
}
|