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
- Android O
- contentprovider
- 카카오톡
- Activity 수명 주기
- service
- Push
- In-app Billing
- unreal
- Android O Preview
- 배포
- BLOCK
- NSURLConnection
- Unchecked Exception
- HTTP
- signing
- Google Cloud Messasing
- Android
- Google Cloud Messasging
- AccountManager
- GCM
- xcode
- android studio
- 트위터
- 페이스북
- gradle
- 데이터 공유
- 다른 앱에서 열기
- 안드로이드 개발 레벨업 교과서
- ios9
- 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