For getting strings from strings.xml I am using this code:
tlacitko3.setText(getResources().getString(R.string.tlacitko3));
But I realize that also work this one:
tlacitko3.setText(getString(R.string.tlacitko3));
So where is difference? Or is there something bad on shorter version? Thanks