FragmentManager和beginTransaction无法在 androidx 中解析 FragmentManager fM = getSupportFragmentManager();
FragmentTransaction fragmentTransaction = fM.beginTransaction();
1 回答
慕神8447489
TA贡献1780条经验 获得超1个赞
在androidx.appcompat.app.AppCompatActivity
或androidx.fragment.app.Fragment
仅使用导入:
import androidx.fragment.app.FragmentManager;
该类位于androidx.fragment:fragment:x.x.x
库内部,它是androidx.appcompat:appcompat
. 只需使用:
implementation 'androidx.appcompat:appcompat:1.1.0'
添加回答
举报
0/150
提交
取消