Android Studio - getChildFragmentManager / android-support-v4

时间:2015-02-11 23:18:12

标签: android android-fragments navigation-drawer android-support-library android-tabhost

我无法解决android-support-v4的问题。

所有“附加内容”,包括“Android支持存储库(11)”和“Android支持库(21.0.3)” - 已安装。

我尝试了很多我发现的想法,但没有任何帮助。我是AndroidStudio初学者。这是我的builg.gradle:

apply plugin: 'com.android.application'

android {
    compileSdkVersion 21
    buildToolsVersion "21.1.2"

    defaultConfig {
        applicationId "com.example.myapp"
        minSdkVersion 17
        targetSdkVersion 21
        versionCode 1
        versionName "1.0"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    compile fileTree(include: ['*.jar'], dir: 'libs')
    compile 'com.android.support:support-v4:21.0.3'
    compile 'com.google.android:support-v4:r7'
}

我想在其中一个片段中使用TabHost(我做了导航抽屉)。这就是我需要“getChildFragmentManager()”的原因。 如果有另一种方法可以做到这一点,我可以跳过与“support-v4”的战斗。

但是我不明白我做错了......有很多人遇到这个问题,但我无法解决:(

1 个答案:

答案 0 :(得分:0)

我解决了。

我手动更改了所有" android.support.v4.app.Fragment"在申请的每个地方。