开发者

Android - Fragment API for API level < 11

I have came across a problem for dynamic forms in my app, which is suited for Android 2.1 and above. I know there is new Fragment API since API level 11 (Android 3.0 Honeycomb), but also I have read an article - http://android-developers.blogspot.com/2011/03/fragments-fo开发者_JS百科r-all.html stating Fragment Api is available also for API level lower then 11 in, so called, Compatiblity package. I have installed it via SDK, but I am not able to use is in my App, e.g. I cannot import android.app.FragmentManager, application doesn't know it.

Do you know, how to solve it? Is Fragment API truely available for older API levels? If so, how to make them going? Or is there any other solution like Fragments API? I will need for dynamic generated forms if possible

Thanks

Hmyzak


Android Studio:

Add a dependency for support compatibility package v4:

dependencies {
    ...
    compile 'com.android.support:support-v4:21.0.+'
    ...
}

and then use import android.support.v4.app.Fragment; instead of import android.app.Fragment; in imports.


You need to add the package to the build path.


Use ActionBarSherlock. It comes with a lot of working examples.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜