gpt4 book ai didi

java - getSupportFragmentManager().getFragments() 显示编译时错误

转载 作者:IT老高 更新时间:2023-10-28 20:42:58 31 4
gpt4 key购买 nike

调用 getSupportFragmentManager().getFragments() 显示编译时错误,并显示以下消息:

getSupportFragmentManager().getFragments() can only be called from within the same library group(groupId = com.android.support)

我在MainActivity中导入了以下类:

import android.os.Bundle;
import android.support.annotation.NonNull;
import android.support.design.widget.BottomNavigationView;
import android.support.v4.app.Fragment;
import android.support.v4.app.FragmentManager;
import android.support.v4.app.FragmentTransaction;
import android.support.v7.app.AppCompatActivity;
import android.util.Log;
import android.view.MenuItem;
import android.widget.Toast;

MainActivity 扩展了 AppCompatActivity

我的项目模块级build.gradle文件如下:

apply plugin: 'com.android.application'

android {
compileSdkVersion 25
buildToolsVersion "25.0.2"
defaultConfig {
applicationId "com.mycompany.floatingdemo"
minSdkVersion 16
targetSdkVersion 25
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
vectorDrawables.useSupportLibrary = true
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'com.android.support:appcompat-v7:25.2.0'
compile 'com.android.support:design:25.2.0'
compile 'com.android.support:support-vector-drawable:25.2.0'
testCompile 'junit:junit:4.12'
}

这是 FragmentManager.java 中方法 getFragments 的源代码。

/**
* Get a list of all fragments that have been added to the fragment manager.
*
* @return The list of all fragments or null if none.
* @hide
*/
@RestrictTo(LIBRARY_GROUP)
public abstract List<Fragment> getFragments();

我最近将我的 Android Studio 更新到了最新的稳定版本 (2.3) 并更新了 Android Gradle 插件。我认为这可能是相关的,因为我以前没有看到过这个错误。

最佳答案

FragmentManager documentation 中很明显, getFragments() 不是应用程序可用的公共(public)方法,而是支持库的内部实现细节,因此使用 RestrictTo annotation为防止使用私有(private) API 而添加的。

您需要将代码更改为不使用 getFragments,而仅使用公共(public) API。

关于java - getSupportFragmentManager().getFragments() 显示编译时错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42572249/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com