Toast toast = Toast.makeText(getApplicationContext(), answer , Toast.LENGTH_SHORT);
toast.setGravity(Gravity.TOP, 0, 15);
toast.show();
public static void main(String[] args) {
Boolean[] array = new Boolean[3];
array[0] = true;
array[1] = true;
array[2] = true;
boolean allTrue = !Arrays.asList(array).contains(Boolean.FALSE);
System.out.println(allTrue);
}