1)kr.android.s02TextViewDemo02 프로젝트 생성
2)
3)TextView를 참조하기 위해 id를 부여한다.
4)
//activity_main.xml의 TextView 태그에 명시한 ID를 통해 TextView 객체 호출
TextView text = (TextView)findViewById(R.id.textView);
text.setBackgroundColor(Color.BLUE);//배경색
text.setTextColor(Color.WHITE);//글자색
import 가이드 :alt + enter
5)
반응형
'IT > Android Studio' 카테고리의 다른 글
Android Studio 코드 입력시 자동으로 import (0) | 2020.06.30 |
---|---|
Android Studio s04ButtonDemo02 이벤트 생성 (0) | 2020.06.30 |
Android Studio s03ButtonDemo01 버튼 + 클릭 이벤트 (0) | 2020.06.30 |
Android Studio 시작01 뷰작업 (0) | 2020.06.30 |
Android Studio 시작 (0) | 2020.06.30 |