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