最も効果的な方法である次のLayoutInflaterの違いは何ですか。
LayoutInflater inflater = (LayoutInflater)getSystemService(Context.LAYOUT_INFLATER_SERVICE); inflater.inflate(R.layout.buttons,null);
View view = LayoutInflater.from(getBaseContext()).inflate(R.layout.buttons,null);
View view = getLayoutInflater().inflate(R.layout.buttons, mainLayout,false);