gpt4 book ai didi

android - 无法解析导入 android.app.FragmentManager

转载 作者:行者123 更新时间:2023-11-29 01:37:08 25 4
gpt4 key购买 nike

import android.app.FragmentManager 无法解析。我从 SDK Manager 下载了支持库。我还设置了 jar 文件的路径。这个错误仍然存​​在。

package com.example.myfragments;
import android.os.Bundle;
import android.app.Activity;
import android.support.v4.app.Fragment;
import android.app.FragmentManager;
import android.app.FragmentTransaction;
import android.content.res.Configuration;
import android.view.WindowManager;

public class MainActivity extends Activity {

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);

Configuration config = getResources().getConfiguration();
FragmentManager fragmentManager = getFragmentManager();
FragmentTransaction fragmentTransaction = fragmentManager.beginTransaction();
if (config.orientation == Configuration.ORIENTATION_LANDSCAPE) {
/**
* Landscape mode of the device
*/
LM_Fragment ls_fragment = new LM_Fragment();
fragmentTransaction.replace(android.R.id.content, ls_fragment);
}else{
/**
* Portrait mode of the device
*/
PM_Fragment pm_fragment = new PM_Fragment();
fragmentTransaction.replace(android.R.id.content, pm_fragment);
}
fragmentTransaction.commit();
}

}

最佳答案

您的 Activity 应该扩展 FragmentActivity。引入支持库以向旧版 Android 添加一些功能。例如 Fragments 是在 Android 3.0 (SDK nr: 11) 中引入的。事实上(根据文档)在 Androids 3.0 中<支持库使用 fragment 的系统实现。

关于android - 无法解析导入 android.app.FragmentManager,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27226538/

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