调用getSupportFragmentManager().getFragments()
显示编译时错误,并显示以下消息:
getSupportFragmentManager()。getFragments()只能从中调用 在同一个库组(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'
}
这是getFragments
内方法FragmentManager.java
的源代码。
/**
* 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插件。我认为这可能是相关的,因为我之前没有看到过这个错误。
答案 0 :(得分:17)
正如FragmentManager
documentation中明显的那样,getFragments()
不是应用程序可用的公共方法,而是支持库的内部实现细节,因此使用了添加的RestrictTo
annotation防止使用私有API。
您希望将代码更改为不使用getFragments
并仅使用公共API。
答案 1 :(得分:5)
替代方案对于那些可能在编码中使用getFragments()
的用户,我已将我的代码替换为backstack
中的最后一个片段到此代码(我在onBackPressed()
中使用此代码根据{{1}}应用更改,假设所有片段都添加到backstack中):
currentFragment
答案 2 :(得分:3)
您可以使用(确保使用25.2.0或更高版本)
supportFragmentManager.registerFragmentLifecycleCallbacks(object : FragmentManager.FragmentLifecycleCallbacks() {
override fun onFragmentAttached(fm: FragmentManager?, f: Fragment?, context: Context?) {
f?.let { fList.add(it) }
}
override fun onFragmentDetached(fm: FragmentManager?, f: Fragment?) {
f?.let { fList.remove(it) }
}
}, false)
而不是使用getFragments()