【Android】this Vs Activity.this

廢話很少說ide

最好所有使用 Activity.this 這樣就不會有問題了this

 

【坑】在內部匿名類中若是使用 this 將會報錯code

【填】JAVA基礎中this表示當前類的引用,內部匿名內中此時使用this使用的是該匿名類it

 

【B.T.W】基礎

- 問 > 內部匿名類又是個什麼鬼??List

- 答 > 沒有起名字,只被用一次就沒了引用

諸如 以下代碼段的OnClickListenervi

private Button btnB ;        
        btnB = (Button) findViewById(R.id.btn_b);
        btnB.setOnClickListener(new OnClickListener() {
            
            @Override
            public void onClick(View arg0) {
                // TODO Auto-generated method stub
                
            }
        });
相關文章
相關標籤/搜索