Is there any option to implement `LoaderManager.LoaderCallbacks<Cursor>` and respective methods from a `TabActivity`?

StackOverflow https://stackoverflow.com/questions/13826949

문제

Is there any option to implement LoaderManager.LoaderCallbacks<Cursor> and respective methods and getSupportLoaderManager().initLoader(1, null, this); from a TabActivity ?

I know that TabActivity is deprecated, but I can't find a solution without transform all my Aactivities into Fragments to use a tabs and I need to implement a CursorLoader (this one) on my TabActivitiy, if this is possible.

도움이 되었습니까?

해결책

do not use TabActivity! It's deprecated!

Use the action bar alternative that you'll be able to use the loaders.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top