Updated to butterknife 8.
This commit is contained in:
parent
816d8676fd
commit
e73feb48af
27 changed files with 209 additions and 174 deletions
|
|
@ -36,7 +36,7 @@ import java.util.ArrayList;
|
|||
import java.util.Arrays;
|
||||
import java.util.List;
|
||||
|
||||
import butterknife.Bind;
|
||||
import butterknife.BindView;
|
||||
import butterknife.ButterKnife;
|
||||
|
||||
/**
|
||||
|
|
@ -234,11 +234,11 @@ public class DonationsDialog extends DialogFragment implements BillingProcessor.
|
|||
}
|
||||
|
||||
static class ViewHolder {
|
||||
@Bind(R.id.title)
|
||||
@BindView(R.id.title)
|
||||
TextView title;
|
||||
@Bind(R.id.text)
|
||||
@BindView(R.id.text)
|
||||
TextView text;
|
||||
@Bind(R.id.price)
|
||||
@BindView(R.id.price)
|
||||
TextView price;
|
||||
|
||||
public ViewHolder(View view) {
|
||||
|
|
|
|||
|
|
@ -24,16 +24,16 @@ import com.kabouzeid.gramophone.util.MusicUtil;
|
|||
import com.kabouzeid.gramophone.util.PreferenceUtil;
|
||||
import com.triggertrap.seekarc.SeekArc;
|
||||
|
||||
import butterknife.Bind;
|
||||
import butterknife.BindView;
|
||||
import butterknife.ButterKnife;
|
||||
|
||||
/**
|
||||
* @author Karim Abou Zeid (kabouzeid)
|
||||
*/
|
||||
public class SleepTimerDialog extends DialogFragment {
|
||||
@Bind(R.id.seek_arc)
|
||||
@BindView(R.id.seek_arc)
|
||||
SeekArc seekArc;
|
||||
@Bind(R.id.timer_display)
|
||||
@BindView(R.id.timer_display)
|
||||
TextView timerDisplay;
|
||||
|
||||
private int seekArcProgress;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue