Computer/Android&iOS
TabActivity 와 ActivityGroup 는 deprecated 되었습니다.
ywlee
2014. 3. 6. 11:11
1. TabActivity
참고 : http://developer.android.com/reference/android/app/TabActivity.html
This class was deprecated in API level 13.
New applications should use Fragments instead of this class; to continue to run on older devices, you can use the v4 support library which provides a version of the Fragment API that is compatible down to DONUT
.
문구를 보면 API 13 (안드로이드 3.2)부터는 TabActivity는 deprecated 함수로 처리된다고 하고,
대신 Fragments를 이용하라고 되어있습니다.
Fragments 는 완전히 새로운 기능이기때문에
구버전의 OS를 가진 devices에서 구동을 위하여 v4 라는 지원 라이브러리를 포함하여 개발하라고 하는 것 같습니다.
2. ActivityGroup
참고 : http://developer.android.com/reference/android/app/ActivityGroup.html
Use the new
Fragment
and FragmentManager
APIs instead; these are also available on older platforms through the Android compatibility package.ActivityGroup 역시 API 13 부터 deprecated되었으며,
대신 Fragment와 FragmentManager를 이요하라고 명시되어있습니다.