profile image

L o a d i n g . . .

반응형

 

안드로이드 버터나이프 사용하기

Use the Android ButterKnife

// ButterKnife
    implementation 'com.jakewharton:butterknife:8.8.0'
    annotationProcessor 'com.jakewharton:butterknife-compiler:8.8.0'

그레이들에 이렇게 추가만 시켜주면 된다.

혹시 안된다면 깃허브에 들어가서 다시 보는것을 추천

버터나이프를 사용하기에는 어노테이션을 사용하는데 그에 따른 것도 다운을 받아야 하나보다.

자세히는 나도 모름

 

All you have to do is add this to the grays.

If not, I recommend you to go back to the flag hub and see it again.

I use an an annotation to use a ButterKnife, and I think I need to download it as well.

I don't know in detail.

 

    @BindView(R.id.main_ToolBar)
    Toolbar main_ToolBar;

    @BindView(R.id.main_Login)
    Button main_Login;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        ButterKnife.bind(this);

        main_Login.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                Intent intent = new Intent(getApplicationContext(), HomeActivity.class);
                startActivity(intent);
            }
        });

 

버터나이프를 사용하기 위해서는 어노테이션을 이용하여 단 두줄 합치면 한줄이면 가능하다.

그리고 바로 원래 쓰듯이 바로 사용하면 되는데, 사용하기에 앞서

ButterKnife.bind(this)를 추가해주어야 한다.

 

To use a butter knife, you can combine it in just one line using an annotation.

And you can use it right away, just like the original, right before you use it.

ButterKnife.bind(this) should be added.

반응형
복사했습니다!