Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- Unchecked Exception
- BLOCK
- xcode
- Activity 수명 주기
- gradle
- 데이터 공유
- GCM
- contentprovider
- NSURLConnection
- Android O
- unreal
- 트위터
- Android O Preview
- 다른 앱에서 열기
- 배포
- Android
- Google Cloud Messasging
- HTTP
- ios9
- signing
- 안드로이드 개발 레벨업 교과서
- android studio
- In-app Billing
- service
- 페이스북
- Push
- Google Cloud Messasing
- AccountManager
- ios
- 카카오톡
Archives
- Today
- Total
목록activity (1)
노블의 개발이야기
[안드로이드 개발 레벨업 교과서] 2.1 액티비티를 이해하자
2.1.1. 액티비티란? AppCompatActivity는 액티비티를 상속하며, 액티비티를 상속함으로써 머터리얼 디자인(Material Design)의 가이드라인에 따른 AppCompat 라이브러리를 제대로 활용할 수 있습니다. AppCompatActivity를 상속할 수 없을 때는 다음과 같이 android.support.v7.app.AppCompatDelegate를 이용합니다. public class MainActivity extends Activity { AppCompatDelegate mDelegate; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); mDelegate ..
Books
2017. 8. 24. 01:11