package com.hollowworld;
public class HollowWorld {
	/**
	 * @param args
	 */
	public static void main(String[] args) {
		// TODO Auto-generated method stub
		int a = 5;
		int b = 1;
		
		if ( a > b) {
			
			//문장 1
			System.out.println("위 조건식이 true일 결우 이 문장이 나올 것입니다");
		}
		
		//문장 2
		System.out.println("\n끝");
		
	}
}
	일반 if문 소스인데 만약 저 조건식이 true이면 문장 12를 실행 하잖아요
	 
	그런데 
	 
System.out.println("위 조건식이 true일 결우 이 문장이 나올 것입니다");
	이걸 안드로이드 layout - activity_main.xml에 에있는 aaa텍스트에 뜨우고 싶은데 어떻게 해야 될까요??