본문 바로가기
모바일 개발/Android

안드로이드 내가 실수한 부분

by JongDroid 2020. 12. 11.

1.Style 에서 noActionbar 로 안되어있으나 액션바가 나오지 않음 

 MainActivity 상속을 Activity를 받고 있었음 --> AppCompatActivity  themach.tistory.com/372

 

[Andorid] Activity와 AppCompatActivity, 그 외의 차이

 몇년 사이에 신규로 프로젝트를 생성한다면, AppCompatActivity부터 마주하는 분들이 있을 것 같습니다. 그러나 저처럼 오래된 프로젝트 코드를 마주하면, Activity와 AppCompatActivity를 함께 발견할 수

themach.tistory.com

 

2.XML에서 Weight 속성은 절대 dp나 sp 붙이면 안됨!!!

 

3.안드로이드 스튜디오 버전 4.0 이후로 버튼 등, 색상, 백그라운드 등 속성 지정 안될때 

안스 4.0 이후로는 themes 라는 개념이 추가됨 

* themes 에서 parent 테마를 Theme.AppCompat.Light.DarkActionBar 로 설정해주면 됨!! 

댓글