I use this simple condition check to show a Toast but none of them is shown:
public void ShowVersion(){
//This works So I am sure the method is called:
//Toast.makeText(this,"Method is called",Toast.LENGTH_LONG).show();
if (Build.VERSION.SDK_INT >= 23) {
Toast.makeText(this,"Version Supported",Toast.LENGTH_LONG).show();
} else {
Toast.makeText(this,"Version not supported",Toast.LENGTH_LONG).show();
}
}
How it is possible that none of if and else work?