1. ホーム
  2. android

[解決済み] フラグメント内のメソッド 'getSupportFragmentManager ( )' を解決できない

2022-02-06 03:16:20

質問

Cannot resolve method 'getSupportFragmentManager ( )' というメッセージが表示されました。 アクティビティとしてフラグメントを作成したい。 タブのスワイプでMapを使いたいからです。

public class PETAcikarangsukatani extends Fragment {
Context context;

private static final LatLng SUKATANI = new LatLng(-6.171327, 107.178108);
private static final LatLng WRPOJOK = new LatLng(-6.222411, 107.162158);
private static final LatLng PILAR = new LatLng(-6.257033, 107.156472);
private static final LatLng CIKARANG = new LatLng(-6.256073, 107.143984);


GoogleMap googleMap;
final String TAG = "PathGoogleMapActivity";

@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
                         Bundle savedInstanceState) {

    View rootView = inflater.inflate(R.layout.activity_path_google_map, container, false);
    context = rootView.getContext();

    SupportMapFragment fm = (SupportMapFragment)getSupportFragmentManager()
            .findFragmentById(R.id.map);
    googleMap = fm.getMap();

解決方法は?

の中は Fragment サブクラスでは getFragmentManager の代わりに getSupportFragmentManager . サポートライブラリからインポートした場合は、サポートの方を取得します。