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